#include using namespace std; int main(){ long long H,W,N,K; cin >> H >> W >> N >> K; if((H*W%N)==K%N) cout << "YES" << endl; else cout << "NO" << endl; return 0; }