Problem: Utkarsh is forced to play yet another one of Ashish's games. The game progresses turn by turn and as usual, Ashish moves first.
Consider the 2D plane. There is a token which is initially at . In one move a player must increase either the coordinate or the coordinate of the token by exactly . In doing so, the player must ensure that the token stays within a (Euclidean) distance from .
In other words, if after a move the coordinates of the token are , then must hold.
The game ends when a player is unable to make a move. It can be shown that the game will end in a finite number of moves. If both players play optimally, determine who will win.
Input Format: The first line contains a single integer () — the number of test cases.
The only line of each test case contains two space separated integers () and ().
Output Format: For each test case, if Ashish wins the game, print "Ashish", otherwise print "Utkarsh" (without the quotes).
Note: In the first test case, one possible sequence of moves can be
.
Ashish has no moves left, so Utkarsh wins.