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