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