#P1033B. Square Difference
Square Difference
No submission language available for this problem.
Description
Alice has a lovely piece of cloth. It has the shape of a square with a side of length centimeters. Bob also wants such piece of cloth. He would prefer a square with a side of length centimeters (where ). 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?
The first line contains a number () — the number of test cases.
Each of the next lines describes the -th test case. It contains two integers and — the side length of Alice's square and the side length of the square that Bob wants.
Print lines, where the -th line is the answer to the -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).
Input
The first line contains a number () — the number of test cases.
Each of the next lines describes the -th test case. It contains two integers and — the side length of Alice's square and the side length of the square that Bob wants.
Output
Print lines, where the -th line is the answer to the -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).
Samples
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 , which is prime, so the answer is "YES".

In the second case, the area is , which is divisible by .

In the third case, the area of the remaining piece is . This number is not prime because .
In the last case, the area is .