#経験値1.5倍 import math a = int(input()) b = int(input()) c = int(input()) l = math.ceil(a / b) m = math.ceil(a / c) if l * 2 / 3 >= m: print("YES") else: print("NO")