n, k, t = map(int, input().split())
ans = "No"
if k * n >= 0 and abs(k * t) >= abs(n):
    ans = "Yes"
print(ans)