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