12011 - DS_2018Fall_OJ_test   

Description

You are given length of three sides in a triangle

Your task is decide if the given triangle is a right triangle(直角三角形)

 

hint: a^2 + b^2 = c^2

Input

three integer

a b c

1 <= a,b,c <= 100000

Output

YES or NO

you need to output '\n' in the end of line

(newline)

Sample Input  Download

Sample Output  Download

Tags




Discuss