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