View Code of Problem 109

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

Double click to view unformatted code.


Back to problem 109