n, k, t = map(int, input().split()) n = abs(n) d = 0 - - n // k if d <= t: print('Yes') else: print('No')