#include using namespace std; int main() { int b, c; cin >> b >> c; if (b == c) { puts("Yes"); } else { puts("No"); } return 0; }