#include #include typedef long long ll; int main(void) { std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(8); ll h, w, n, k; std::cin >> h >> w >> n >> k; std::cout << (h*w%n==k%n ? "YES" : "NO") << std::endl; return 0; }