// No.166 マス埋めゲーム // https://yukicoder.me/problems/no/166 // #include using namespace std; int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); long long H, W, N, K; cin >> H >> W >> N >> K; if (N == K) K = 0; if (H * W % N == K) { cout << "YES" << endl; } else { cout << "NO" << endl; } }