Bunty is playing chess with his Aunty on a M*N (M is y axis and N is x axis) board but they have just 1 pawn each on cells x1, y1 and x2, y2 respectively. The winner of the game is the one who manages to capture the opponent's piece. Bunty has the black pawn and Aunty has the white pawn.
Determine the winner of the game.
The rules of the game are as follows:
Print Bunty, Aunty or Draw.
Draw occurs if no player can move or the game continues for more than 1018 moves. Assume Bunty and Aunty are pro players and both play optimally.
Draw also occurs if both pawns are promoted to another piece and both peices stay in the game for >= 1 move.
Input Format
There are T test cases.
Each test case is a single line consisting of 6 integers N, M, x1, y1, x2, y2.
Constraints
T=1052≤N,M≤10011≤x1,x2≤N1≤y1≤M−1y1<y2≤M
Output Format
Output in a single line for each Test case the winner of the game (Aunty, Bunty or Draw).