import math a = int(input()) b = int(input()) c = int(input()) print("YES" if math.ceil(a / b) >= math.ceil(a / c) * 1.5 else "NO")