#include using namespace std; using ll = long long; constexpr char newl = '\n'; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); ll a, b; cin >> a >> b; ll g = __gcd(a, b); a /= g; b /= g; while (b % 2 == 0) b /= 2; while (b % 5 == 0) b /= 5; cout << (b == 1 ? "No" : "Yes") << newl; return 0; }