H,W,N,K=map(int,input().split()) if N==1: print("YES") elif (H+W-1)%N==K%N: print("YES") else: print("NO")