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