Sharp Triangle

5

1 votes
Problem

 invented a new type of triangles and called them as . A triangle is said to be a  if and only if the triangle has a positive area, and satisfies  with , , and , the length of its sides.

Given three integers ,  and , determine whether a triangle with sides ,  and  is .
You have to answer for  independent test cases.


Input:
The first line contains an integer , representing the number of test cases  test cases follows,
Each test case contains three space-separated integers ,  and .


Output:
For each test case on a new line, print "YES" (without quotes) if the triangle with given sides is Sharp
Triangle else print "NO".


Constraints

Sample Input
3
1 2 3
5 4 4
8 4 2
Sample Output
NO
YES
NO
Time Limit: 1
Memory Limit: 256
Source Limit:
Editor Image

?