View Code of Problem 113

#include <stdio.h>
#include <math.h>
int main()
{
    int n,m;
	while(~scanf("%d %d",&n,&m))
	{
		printf("%d\n",n+m);
		printf("\n");
	}
}

Double click to view unformatted code.


Back to problem 113