题库练习 Rectangle Cutting
← 上一题 下一题 →

A11337 | Rectangle Cutting

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Bob has a rectangle of size $a \times b$ . He tries to cut this rectangle into two rectangles with integer sides by making a cut parallel to one of the sides of the original rectangle. Then Bob tries to form some other rectangle from the two resulting rectangles, and he can rotate and move these two rectangles as he wishes.

Note that if two rectangles differ only by a $90^{\circ}$ rotation, they are considered the same. For example, the rectangles $6 \times 4$ and $4 \times 6$ are considered the same.

Thus, from the $2 \times 6$ rectangle, another rectangle can be formed, because it can be cut into two $2 \times 3$ rectangles, and then these two rectangles can be used to form the $4 \times 3$ rectangle, which is different from the $2 \times 6$ rectangle.

![](/uploads/acgo/image/f7cc524a9433ffc3_1fb5338b935d.jpeg)However, from the $2 \times 1$ rectangle, another rectangle cannot be formed, because it can only be cut into two rectangles of $1 \times 1$ , and from these, only the $1 \times 2$ and $2 \times 1$ rectangles can be formed, which are considered the same.

![](/uploads/acgo/image/dd237f129a575657_dd79dbddefcf.jpeg)Help Bob determine if he can obtain some other rectangle, or if he is just wasting his time.

输入格式

Each test consists of multiple test cases. The first line contains a single integer $t$ ( $1 \leq t \leq 10^4$ ) — the number of test cases. This is followed by the description of the test cases.

The single line of each test case contains two integers $a$ and $b$ ( $1 \le a, b \le 10^9$ ) — the size of Bob's rectangle.

输出格式

For each test case, output "Yes" if Bob can obtain another rectangle from the $a \times b$ rectangle. Otherwise, output "No".

You can output the answer in any case (upper or lower). For example, the strings "yEs", "yes", "Yes", and "YES" will be recognized as positive answers.

输入输出样例

输入 #1
7
1 1
2 1
2 6
3 2
2 2
2 4
6 3
输出 #1
No
No
Yes
Yes
Yes
Yes
No
C++ 编辑器
输入
输出