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