#include<bits/stdc++.h>
using namespace std;
int main(){
int p,q;
cin>>p>>q;
if (p>=q){
cout<<"Yes"<<endl;
}
else {
cout<<"No"<<endl;
}
return 0;
}
/**************************************************************
Problem: 1706
User: xiaojingxuan
Language: C++
Result: Accepted
Time:8 ms
Memory:2072 kb
****************************************************************/