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