#include int main() { int b, c; scanf("%d %d", &b, &c); if (b == c) printf("Yes\n"); else printf("No\n"); return 0; }