L,R,M,K = map(int, input().split()) if (R*K)%M < (L*K)%M or R*K-L*K >= M or K == 0 or M == 1: print("Yes") else: print("No")