#include #define rep(i,n) for(int i=0;i<(n);++i) using namespace std; typedef long long ll; int main() { ios::sync_with_stdio(false); cin.tie(0); int a, b; cin >> a >> b; bool elf = false; for (int i = 1; i <= a; i++) { if (a % i == 0) { if (i % b == 0) elf = true; } } if (elf) cout << "YES" << endl; else cout << "NO" << endl; }