H,W,N,K=map(int,input().split()) if (H*W-1)%N==K-1: print("Yes") else: print("No")