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
three integer
a b c
1 <= a,b,c <= 100000
YES or NO
you need to output '\n' in the end of line
(newline)