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