L,R,M,K=map(int,input().split()) A=(R*K)//M B=(L*K-1)//M if A==B: print("No") else: print("Yes")