N,K,T= map(int, input().split()) if N < 0: absN = -N else: absN = N if K*T < absN: a = ["No"] else: a = ["Yes"] print("\n".join(map(str, a)))