def gcd(a,b): if b==0: return a else: return gcd(b,a%b) a,b=map(int,input().split()) g=gcd(a,b) a//=g b//=g while b%2==0: b//=2 while b%5==0: b//=5 if b==1: print('No') else: print('Yes')