#include using namespace std; #define rep(i, n) for (int i = 0; i < (n); i++) typedef long long ll; typedef pair pii; typedef vector vll; typedef vector vi; typedef vector> vvi; typedef vector> vvll; const ll inf = 1e16; const ll md = 1000000007; int main() { ll h,w,n,k; cin>>h>>w>>n>>k; if((h*w-1)%n+1==k) puts("YES"); else puts("NO"); return 0; }