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