#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; scanf("%d%d",&a,&b); while(b) { c=b%a; if(!c)b/=a; else if(c==){b=(b-)/a;} else if(c==a-){b=(b+)/a;} else{puts("NO");return ;} } puts("YES"); }