View Code of Problem 109

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

Double click to view unformatted code.


Back to problem 109