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