import math a, b, c = [int(input()) for _ in range(3)] b = math.ceil(a / b) c = math.ceil(a / c) print(['NO', 'YES'][b*2 >= c*3])