a = int(input()) b = int(input()) c = int(input()) def options(a, b, c): need_x = a / b need_y = a / c if need_y / need_x <= 2/3: return "YES" else: return "NO" print(options(a, b, c))