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