Time limit: 1.0s , Memory limit: 256M , Points: 1 (partial)
Given four integers, check whether these four integers can form the four sides of a rectangle.
A valid rectangle must have two pairs of equal-length sides.
Input
- The input starts with a positive integer
— the number of test cases. Each test case is printed in a single line with four integers with the value in the range
to
.
Output
- For each test case, print "YES" if the given four integers can form the four sides of a rectangle; otherwise, print "NO".
Example
Input
3
1 1 2 2
3 2 4 2
5 3 5 3
Output
YES
NO
YES
Comments