#define _GLIBCXX_DEBUG #include using namespace std; int main() { int A1, A2, A3, A4; cin >> A1 >> A2 >> A3 >> A4; if(A1 < A2 and A3 > A4) cout << "YES" << endl; else cout << "NO" << endl; }