a,b,c=[int(input()) for i in range(3)] before=a/b after=a/c if after/before<=2/3: print("YES") else: print("NO")