#include using namespace std; using ll = long long; using P = pair; #define rep(i,n) for(int i=0;i> h >> w >> n >> k; if (((h*w)-k)%n==0) cout << "YES" << endl; else cout << "NO" << endl; return 0; }