View Code of Problem 1

#include<cstdio>

int main(){
  	int a,b,ans;
  	scanf("%d %d",&a,&b);
  	ans=a+b;
  	printf("%d",ans);

	return 0;
}

Double click to view unformatted code.


Back to problem 1