#include using namespace std; int main() { int b, c; cin >> b >> c; string out = "No"; if(b == c) out = "Yes"; cout << out << '\n'; }