#include using namespace std; typedef long long ll; signed main(){ ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(20); int a,b; cin>>a>>b; for(int i=1;i<=a;i++){ if(a%i==0 && i%b==0){ cout << "YES" << endl; return 0; } } cout << "NO" << endl; }