#Lutece1024. Flying Chess

Flying Chess

Migrated from Lutece 1024 Flying Chess

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

Ye.Dong likes playing flying chess very much, so he wants Ye.Han to play with him.

To simplify the problem, we define the rules as follows:

  1. Ye.Dong and Ye.Han both have two plane chesses. All chesses are at point 00 at the very begining. When two planes of a person both reach the destination(point NN), he'll win the game.
  2. If one of the planes of a person has not reach the destination(point NN), the another plane of his cannot take off.
  3. Two people throw a dice by turns, and the number(11~66) is the steps that the taken-off plane will fly forwards.
  4. The plane, which has not taken off(in other words, at the point 00), can take off(fly from point 00 to point 11) only if he throws a dice and get the number 66.
  5. If a plane of person A will fly to point x(1<x<N)x(1 < x < N), and there is already one plane belonging to person B, the personA's plane will reach the point x, and the personB's will return to point 0.
  6. We assume that N=5N = 5 and you are at the point 33 now, then you will reach the destination(point NN) if you get the number 2,3,4,5,62, 3, 4, 5, 6 after throwing a dice.
  7. Ye.Dong takes the first turn.

Now you know the number they'll get after throwing a dice. Your task is to find out who will win the game.

Input

The first line contains only one integer, TT, which is the number of test cases.

For each case:

The first line contains two integers, NN and M(1N,M10000)M (1 \leq N, M \leq 10000). NN is the number of the destination point. They both will throw a dice for MM times.

The following two lines both contain MM integers, representing the number of dice of Ye.Dong and Ye.Han will get.

Output

For each case:

Print Ye.Dong if Ye.Dong wins; print Ye.Han if Ye.Han wins.

If no one wins after MM turns, print Tie.

Samples

3
5 5
6 4 6 2 2 
6 4 6 4 6
5 5
6 4 6 2 2 
6 4 6 2 2
5 2
6 1
1 1
Ye.Han
Ye.Han
Tie.

Note

For Sample 11:

  1. Ye.Dong: plane11 -> 11
  2. Ye.Han: plane11 -> 11
  3. Ye.Dong: plane11 -> 55 (destination point NN)
  4. Ye.Han: plane11 -> 55 (destination point NN)
  5. Ye.Dong: plane22 -> 11
  6. Ye.Han: plane22 -> 11
  7. Ye.Dong: plane22 -> 33
  8. Ye.Han: plane22 -> 55 (destination point NN) Ye.Han wins (There are still some numbers of dice. You can just assume that they are killing the time. = =!)

For Sample 22:

  1. Ye.Dong: plane11 -> 11
  2. Ye.Han: plane11 -> 11
  3. Ye.Dong: plane11 -> 55 (destination point NN)
  4. Ye.Han: plane11 -> 55 (destination point NN)
  5. Ye.Dong: plane22 -> 11
  6. Ye.Han: plane22 -> 11
  7. Ye.Dong: plane22 -> 33
  8. Ye.Han: plane22 -> 33, and then Ye.Dong's plane22 will return back to point 00
  9. Ye.Dong: the number is not 66, so the plane22 cannot take off
  10. Ye.Han: plane22 -> 55 (destination point NN) Ye.Han wins

Resources

GuessEver