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