#include using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); int A, B; cin >> A >> B; if (A % B == 0) { cout << "YES" << '\n'; } else { cout << "NO" << '\n'; } return 0; }