View Code of Problem 1

#include <stdio.h>

int main()
{
	long long a, b, s;
	scanf("%d %d", &a, &b);
	s = a + b;
	printf("%d", s);
	return 0;
}

Double click to view unformatted code.


Back to problem 1