Advertisement
tuki2501

fcb029_difnple.cpp

Nov 9th, 2021
968
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5.   int a, b, c, d;
  6.   cin >> a >> b >> c >> d;
  7.   cout << (a + b > c + d ? "Yes" : "No") << '\n';
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement