codeforces#P1351B. Square?

Square?

Description

Vasya claims that he had a paper square. He cut it into two rectangular parts using one vertical or horizontal cut. Then Vasya informed you the dimensions of these two rectangular parts. You need to check whether Vasya originally had a square. In other words, check if it is possible to make a square using two given rectangles.

The first line contains an integer tt (1t1041 \le t \le 10^4) — the number of test cases in the input. Then tt test cases follow.

Each test case is given in two lines.

The first line contains two integers a1a_1 and b1b_1 (1a1,b11001 \le a_1, b_1 \le 100) — the dimensions of the first one obtained after cutting rectangle. The sizes are given in random order (that is, it is not known which of the numbers is the width, and which of the numbers is the length).

The second line contains two integers a2a_2 and b2b_2 (1a2,b21001 \le a_2, b_2 \le 100) — the dimensions of the second obtained after cutting rectangle. The sizes are given in random order (that is, it is not known which of the numbers is the width, and which of the numbers is the length).

Print tt answers, each of which is a string "YES" (in the case of a positive answer) or "NO" (in the case of a negative answer). The letters in words can be printed in any case (upper or lower).

Input

The first line contains an integer tt (1t1041 \le t \le 10^4) — the number of test cases in the input. Then tt test cases follow.

Each test case is given in two lines.

The first line contains two integers a1a_1 and b1b_1 (1a1,b11001 \le a_1, b_1 \le 100) — the dimensions of the first one obtained after cutting rectangle. The sizes are given in random order (that is, it is not known which of the numbers is the width, and which of the numbers is the length).

The second line contains two integers a2a_2 and b2b_2 (1a2,b21001 \le a_2, b_2 \le 100) — the dimensions of the second obtained after cutting rectangle. The sizes are given in random order (that is, it is not known which of the numbers is the width, and which of the numbers is the length).

Output

Print tt answers, each of which is a string "YES" (in the case of a positive answer) or "NO" (in the case of a negative answer). The letters in words can be printed in any case (upper or lower).

Samples

输入数据 1

3
2 3
3 1
3 2
1 3
3 3
1 3

输出数据 1

Yes
Yes
No