# я зробив все у безкінечному циклі
# в якому сторони вводяться з клавіатури
while True:
print('enter the sides:')
a = float(input())
b = float(input())
c = float(input())
if a**2 == b**2 + c**2 or b**2 == a**2 + c**2 or c**2 == a**2 + b**2:
print('YES')
else:
print('NO')
# я зробив все у безкінечному циклі
# в якому сторони вводяться з клавіатури
while True:
print('enter the sides:')
a = float(input())
b = float(input())
c = float(input())
if a**2 == b**2 + c**2 or b**2 == a**2 + c**2 or c**2 == a**2 + b**2:
print('YES')
else:
print('NO')