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