#include using namespace std; int a, b; int main() { cin >> a >> b; if (a <= b) cout << "Yes" << endl; else cout << "No" << endl; }