Iamtui1010

difnple

Nov 10th, 2021
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. //#include<bits/stdc++.h>
  2. #include<iostream>
  3.  
  4. #define long long long
  5. #define nln '\n'
  6.  
  7. using namespace std;
  8.  
  9. // Global variables: a, b, c, d
  10. long a, b, c, d;
  11.  
  12. int main()
  13. {
  14.     cin >> a >> b >> c >> d;
  15.     if (a+b > c+d)
  16.         cout << "Yes";
  17.     else
  18.         cout << "No";
  19.     return 0;
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment