l, r, m, k = map(int, input().split()) l = k * l r = k * r t = (l - 1) // m + 1 if l <= m * t <= r: print('Yes') else: print('No')