n, k, t = map(int, input().split()) if n >= 0: print("Yes" if n <= k * t else "No") else: print("Yes" if n >= -1 * k * t else "No")