N,K,T = map(int,input().split()) if abs(N)>K*T: print("No") else: print("Yes")