#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const long long MAX = 5100000; const long long INF = 1LL << 60; const long long mod = 1000000007LL; //const long long mod = 998244353LL; using namespace std; typedef unsigned long long ull; typedef long long ll; ll a, b; bool dfs(ll x, ll y) { if (x == 0 || y == 0) return true; if (x % 2 == 1 && y % 2 == 1) return false; bool flag = false; if (x % 2 == 0) flag |= dfs(x / 2, y - 1); if (y % 2 == 0) flag |= dfs(x - 1, y / 2); return flag; } int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ cin >> a >> b; if (dfs(a, b)) puts("Yes"); else puts("No"); return 0; }