#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; long long MOD = 1000000007; // bool func( long long a, long long b ) { // if ( a == 1 && b == 0 ) { return true; } // if ( a == 0 && b == 1 ) { return true; } // if ( a == 0 && b == 0 ) { return true; } // bool x = false, y = false; // if ( a%2 == 0 ) { x = func( a/2, b-1 ); } // if ( b%2 == 0 ) { y = func( b/2, a-1 ); } // return x || y; // } bool bfs( long long a, long long b ) { queue< pair > Q; Q.push( make_pair( a, b ) ); while ( !Q.empty() ) { pair P; P = Q.front(); Q.pop(); if ( P.first == 1 && P.second == 0 ) { return true; } if ( P.first == 0 && P.second == 1 ) { return true; } if ( P.first == 0 && P.second == 0 ) { return true; } if ( P.first%2 == 0 ) { Q.push(make_pair(P.first/2,P.second-1)); } if ( P.second%2 == 0 ) { Q.push(make_pair(P.second/2,P.first-1)); } } return false; } int main() { long long A,B; cin >> A >> B; cout << ( bfs( A,B ) ? "Yes" : "No" ) << endl; return 0; }