#include using namespace std; int main(){ int b,c; scanf("%d %d\n", &b, &c); if(b==c) cout << "Yes" << endl; else cout << "No" << endl; }