n, k, t = map(int, input().split()) ans = "No" if k * t >= abs(n): ans = "Yes" print(ans)