Sunday, February 21, 2016

URI 1589 - Bob Conduit

#include <stdio.h>

int main() {

   int R1, R2, tc;
   scanf("%d",&tc);
   while(tc--){
       scanf("%d %d", &R1, &R2);
       printf("%d\n",R1 + R2);
   }

    return 0;
}

No comments:

Post a Comment

Thank you for commenting. Please wait for response :)