#include void solve() { int a, b; std::cin >> a >> b; std::cout << (a % b == 0 ? "YES" : "NO") << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }