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