a = int(input()) b = int(input()) c = int(input()) ans = 'No' for x in range(1,b+c-a): for y in range(1,b+c-a): if a + x + y >= b + c: break if max(b,c) > min(b,c) + a + x + y: continue A = a + x + y P = -x*(A**2) - x*(b**2) + x*(c**2) + A*(b**2) + A*(x**2) Q = -y*(A**2) - y*(c**2) + y*(b**2) + A*(c**2) + A*(y**2) if P*(b**2)*(y**2) == Q*(c**2)*(x**2): ans = 'Yes' print(ans)