#include using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); int a, b, c, d; cin >> a >> b >> c >> d; if (a d) cout << "YES" << '\n'; else cout << "NO" << '\n'; return 0; }