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