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