blob: c51d4a45c20a40f15fcaf400b429ad6cbadb5617 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include<bits/stdc++.h>
using namespace std;
int main () {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int x, y;
cin >> x >> y;
cout << (y > x ? "YES" : "NO") << endl;
}
|