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