#include <iostream>
#include <set>
using namespace std;
set<int> s;
void f(int n)
{
// 题目要求是1000000,不是100000
if (n > 1000000)
return;
s.insert(n);
f(2 * n + 1);
f(3 * n + 1);
}
int main()
{
int k, x;
scanf("%d,%d", &k, &x);
f(k);
if (s.count(x))
cout << "YES";
else
cout << "NO";
return 0;
}