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