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