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