#include using namespace std; const int N=1100; int n,m,l; int f[N]; int main(){ //freopen("out.txt","w",stdout); cin>>n>>m>>l; assert(n>=1&&n<=100); assert(m>=1&&m<=1000); assert(l>=1&&l<=1000); f[l]=1; for(int i=0;i>x; assert(x>=1&&x<=1000); for(int j=0;j<=1000;j++){ //只能使用一次 if(f[j]==1) f[(j+x)/2]=2; } for(int j=0;j<=1000;j++){ //只能使用一次 if(f[j]==2) f[j]=1; } } if(f[m]) cout<<"Yes"; else cout<<"No"; return 0; }