#include using namespace std; typedef pair pii; typedef long long ll; typedef pair pli; const int N = 2000086, MOD = 1e9 + 7, INF = 0x3f3f3f3f; ll res; int n, m, cnt, w[N]; int main() { cin >> n >> m; puts(n == m ? "Yes" : "No"); return 0; }