C. The Other Half
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given Input and Output you task is to know the logic behind the output.

Input

The first line contains a single integer $$$T$$$ ($$$1 \leq T \leq 2 ⋅ 10^{4}$$$) — the number of test cases.

Each test case consists of two integers, $$$A$$$ and $$$B$$$ ($$$0 \leq A \leq 10^{18}$$$, $$$0 \leq B \leq 10^{18}$$$)

Output

Output "YES" or "NO" (without quotes) for each test case.

You can print each letter in any case. For example, yes, Yes, YeS will all be recognized as a positive answer.

Example
Input
6
18 13
110 17
0 0
12 43
220 35
1 2
Output
YES
YES
NO
NO
YES
YES