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