Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //#include<bits/stdc++.h>
- #include<iostream>
- #define long long long
- #define nln '\n'
- using namespace std;
- // Global variables: a, b, c, d
- long a, b, c, d;
- int main()
- {
- cin >> a >> b >> c >> d;
- if (a+b > c+d)
- cout << "Yes";
- else
- cout << "No";
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment