# URL : https://yukicoder.me/problems/no/1223 n, k, t = map(int, input().split()) if (abs(n) + k - 1) // k <= t: print('Yes') else: print('No')