View Code of Problem 109

#include<stdio.h>
int main()
{int a,b,c,d;
scanf("%d",&a);
for(d=0;d<a;d++)
{scanf("%d %d",&b,&c);
printf("%d",b+c);

}
  return 0;
}

Double click to view unformatted code.


Back to problem 109