#Lutece0115. An Easy Game

An Easy Game

Migrated from Lutece 115 An Easy Game

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Zhym and Aoiing are playing an interesting board game on an N×MN\times M chessboard. Initially, a chessman is placed on the corner of the chessboard. They move the chessman in turn and Zhym moves first. In each step, the chessman can be moved to the unvisited adjacent grid (two grids are called adjacent if they share a common edge). The person who cannot move loses.

Please predict who will win the game if both of them are smart enough.

Input

The first line of the input is an integer TT (T10T\leq 10), which stands for the number of test cases you need to solve. Each case consists of two integers NN, MM (1N,M1000001\leq N, M\leq 100000) on a single line.

Output

For each case, print Zhym will win. or Aoiing will win. on a single line.

Samples

2
1 1
1 2
Aoiing will win.
Zhym will win.

Resources

The 8th UESTC Programming Contest Final