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