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