#include <iostream> using namespace std; int main() { int a, b, c, d; cin >> a >> b >> c >> d; if (b >= c) cout << "YES"; else cout << "NO"; return 0; }
共 1 条回复