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