View Code of Problem 1

#include<cstdio>

int main(){
	long long a,b;
	scanf("%lld%lld",&a,&b);
	long long temp = a+ b;
	printf("%lld\n",temp);
	return 0;
} 

Double click to view unformatted code.


Back to problem 1