import math a = int(input()) b = int(input()) c = int(input()) if math.ceil(a/c)/math.ceil(a/b) * 100 <= 2/3 * 100: print('YES') else: print('NO')