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