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