A friend of mine, who is not that good at math, decides to take maths tuition. You might be thinking 'why would a guy in college take a maths tuition?' Even I thought the same way. But once he decides something, he will do it. No matter what you say to him. Now, he goes a teacher. The teacher, being a good one, tells him that he needs to pass a simple test to get admission there. Our friend had no other option, so he takes the test. Now, the test is pretty simple. All he needs to do is tell if it is possible that a triangle exists with sides having lengths equal to given three numbers. But he remembers nothing about triangles and so he asks for your help. Help him get into the tuition.
INPUT:
The first line contains a number t denoting the number of questions.
The next t lines contain three number each, denoting the length of sides of the triangle.
OUTPUT:
YES, if the three numbers form a triangle.
NO, if they don't.
CONSTRAINTS:
t <= 100000
The sum of the three numbers fit into an integer.