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