N,K,T=map(int,input().split()) N=abs(N) if N%K==0: a=N//K else: a=(N//K)+1 if a>T: print("No") else: print("Yes")