n,k,t = map(int,input().split()) x = abs(n-0) if (x+k-1)//k <= t: print("Yes") else: print("No")