View Code of Problem 110

#include<stdio.h>
int main()
{
	int x,y;
	while(scanf("%d %d",&x,&y)!=EOF)
	{
		printf("%d\n",x+y);
	}
	
}

Double click to view unformatted code.


Back to problem 110