#QCJ3. The Game

The Game

Tom and Hanks play the following game. On a game board having a line of squares labelled from 0,1,2 ... certain number of coins are placed with possibly more than one coin on a single square. In each turn a player can move exactly one coin to any square to the left i.e, if a player wishes to remove a coin from square i, he can then place it in any square which belongs to the set (0,1, ... i-1) . The game ends when all coins are on square 0 and player that makes the last move wins. Given the description of the squares and also assuming that Tom always makes the first move you have tell who wins the game (Assuming Both play Optimally).

Input

The first line will contain N the number of test cases and then 2N lines follow. For each test case the first line will have S the size of the board and in the next line S integers follow. The ith integer gives the the number of coins in the ith square (starting from 1) . Atleast one of the S integers will be non zero. All the numbers in the input will be less than 25.

Output

For each test case output one line containing either "Tom Wins" or "Hanks Wins".

Example

Input:
2
1
1
1
2

Output:

Tom Wins
Hanks Wins