n, k, t = map(int, input().split())


dist = k * t
rang = [-dist, dist]

if rang[0] <= n <= rang[1]:
    print("Yes")
else:
    print("No")