n, k, t = map(int, input().split()) a = (abs(n) + k - 1) // k if a <= t: print("Yes") else: print("No")