H,W,N,K = map(int, raw_input().split()) S = H * W S -= 1 K -= 1 if (S % N == K): print "YES" else: print "NO"