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