Advertisement
nahidhasan110

light oj 1001

Oct 26th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int t,x,y,i;
  5.     scanf("%d",&t);
  6.     for(i=0;i<t;i++)
  7.     {
  8.         scanf("%d %d",&x,&y);
  9.         printf("Case %d: %d\n",i+1,x+y);
  10.  
  11.     }
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement