def input_int(): return int(input()) def input_ints(): return list(map(int, input().split())) def solve(): L, R, M, K = input_ints() l = K * L r = K * R return l // M != r // M or l % M == 0 print('Yes' if solve() else 'No')