# coding: utf-8 # Your code here! a,p,q=(int(x) for x in input().split()) if (p + q) * (p + q) > 4 * p * q : print ("Yes") else: print ("No")