View Code of Problem 109

#include <stdio.h>
#include <stdlib.h>

int main()
{
 int a;
  int b,c,sum;
 scanf("%d",&a);
 while(a--){


    scanf("%d%d",&b,&c);
    sum=b+c;
 printf("%d\n",sum);

}
   return 0;
}

Double click to view unformatted code.


Back to problem 109