View Code of Problem 1

#include<stdio.h>
#include<math.h>
#include<string.h>
int main()
{
	long long a,b,c;
	scanf("%ld%ld",&a,&b);
	c=a+b;
	printf("%ld",c);
	return 0;
} 

Double click to view unformatted code.


Back to problem 1