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