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