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