View Code of Problem 111

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

Double click to view unformatted code.


Back to problem 111