View Code of Problem 113

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

Double click to view unformatted code.


Back to problem 113