SP17559 TWOGAME - Two Game
Description
Alice started playing a new simple game. She starts with the pair of integers (1, 1) and then she may a) duplicate one of the numbers or b) subtract the smaller number from the bigger one. So the game may proceed as follows: she starts with (1, 1), then she moves to (2, 1), then to (4, 1), then to (4, 2), then to (8, 2), then to (6, 2), etc.
She is now wondering if given an arbitrary pair of positive integers (A, B), will she be able to reach at this pair using the proceduce described above ?
Input Format
The first line contains a single positive integer T (T
Output Format
For each test case print a single line with the character Y if it is possible for Alice to reach the given pair or N if it is impossible.