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