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