CF1033B.Square Difference

传统题 时间 2000 ms 内存 256 MiB 5 尝试 1 已通过 1 标签

Square Difference

Alice has a lovely piece of cloth. It has the shape of a square with a side of length aa centimeters. Bob also wants such piece of cloth. He would prefer a square with a side of length bb centimeters (where b<ab \lt a). Alice wanted to make Bob happy, so she cut the needed square out of the corner of her piece and gave it to Bob. Now she is left with an ugly L shaped cloth (see pictures below).

Alice would like to know whether the area of her cloth expressed in square centimeters is prime. Could you help her to determine it?

Input

The first line contains a number tt (1t51 \leq t \leq 5) — the number of test cases.

Each of the next tt lines describes the ii-th test case. It contains two integers aa and b (1b<a1011)b~(1 \leq b \lt a \leq 10^{11}) — the side length of Alice's square and the side length of the square that Bob wants.

Output

Print tt lines, where the ii-th line is the answer to the ii-th test case. Print "YES" (without quotes) if the area of the remaining piece of cloth is prime, otherwise print "NO".

You can print each letter in an arbitrary case (upper or lower).

Note

The figure below depicts the first test case. The blue part corresponds to the piece which belongs to Bob, and the red part is the piece that Alice keeps for herself. The area of the red part is 6252=3625=116^2 - 5^2 = 36 - 25 = 11, which is prime, so the answer is "YES".

In the second case, the area is 162132=8716^2 - 13^2 = 87, which is divisible by 33.

In the third case, the area of the remaining piece is $61690850361^2 - 24777622630^2 = 3191830435068605713421$. This number is not prime because $3191830435068605713421 = 36913227731 \cdot 86468472991$.

In the last case, the area is 342332=6734^2 - 33^2 = 67.

Samples

4
6 5
16 13
61690850361 24777622630
34 33
YES
NO
NO
YES

在线编程 IDE

建议全屏模式获得最佳体验