l,r,m,k=map(int,input().split()) if k*r//m-(k*l)//m>0 or k*r%m==0 or k*l%m==0: print("Yes") else: print("No")