L,R,M,K=map(int,input().split()) L=L*K R=R*K N=(L//M)*M for i in range(3): if L<=N<=R: print('Yes') exit() N+=M print('No')