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