# C L, R, M, K = list(map(int, input().split())) if R * K // M - L * K // M >= 0 or K == 0: print('Yes') else: print('No')