L,R,M,K = map(int,input().split()) ans = "No" if (L*K-1)//M != (R*K)//M: ans = "Yes" print(ans)