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