L,R,M,K=map(int,input().split()) a=(L*K)//M b=(a+1)*M if (L*K)%M==0: print("Yes") exit() if b<=R*K: print("Yes") else: print("No")