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