#include using namespace std; void fast_io() { ios::sync_with_stdio(false); std::cin.tie(nullptr); } int main() { fast_io(); int x, y; cin >> x >> y; cout << (x == y ? "Yes" : "No") << endl; }