l, r, m, k = map(int, input().split()) if l == 0: print("Yes") exit(0) if ((r * k) // m) - (((l * k) - 1) // m) > 0: print("Yes") exit(0) print("No")