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