L,R,M,K = list(map(int,input().split())) if (N+K * L) % M == 0: print('Yes') else: q1 = (N+K * L) // M q2 = (N + K * R) // M if q1 < q2: print('Yes') else: print('No')