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