Promi_38

cf 1445B

Dec 21st, 2020
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5.     int t;
  6.     scanf("%d", &t);
  7.    
  8.     while(t--)
  9.     {
  10.         int a, b, c, d;
  11.         scanf("%d %d %d %d", &a, &b, &c, &d);
  12.        
  13.         if(a + b > c + d) printf("%d\n", a+b);
  14.         else printf("%d\n", c+d);
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment