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