#include using namespace std; int main(){ long long A,B; cin>>A>>B; int count=0; if(A==B)count++; if(A==4&&B==2)count++; if(A==2&&B==4)count++; if(count>0)cout<<"Yes"; else cout<<"No"; }