l,r,m,k=map(int,input().split()) tl=l%m tr=r%m if tl>tr: print("Yes") exit() if tl<=m%tr<=tr: print("Yes") exit() print("No")