View Code of Problem 109

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


}

Double click to view unformatted code.


Back to problem 109