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