import sys sys.set_int_max_str_digits(1000000) a,p,q=map(int,input().split()) b=-a*p-a*q c=a*p*q if b*b>4*a*c: print("Yes") else: print("No")