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