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