L, R, M, K = map(int, input().split()) if K == 0: print("Yes") else: KL = L * K KR = R * K lower = (KL + M - 1) // M upper = KR // M print("Yes" if lower <= upper else "No")