Sequence Folding
Alice and Bob are practicing hard for the new ICPC season. They hold many private contests where only the two of them compete against each other. They almost have identical knowledge and skills, the matter which results many times in ties in both the number of problems solved and in time penalty! To break the tie, Alice and Bob invented a tie breaker technique called sequence folding! The following are the steps of this technique:
- Generate a random integer N ≥ 2.
- Generate a sequence of N random integers.
- If N = 2 go to step 6.
- Fold the sequence by adding the N_th element to the first, the N-1_th element to the second and so on, if N is odd then the middle element is added to itself, figure 1 illustrates the folding process.
- Set N = ceil (N/2) and go to step 3.
- The sequence now contains two numbers, if the first is greater than the second then Alice wins, otherwise Bob wins.
Figure 1.a Before Folding
Figure 1.b After one step of folding
Figure 1.c After two steps of folding, Alice wins!
In this problem you’re given the sequence of N integers and are asked determine the contest winner using the sequence folding tie breaker technique.
Input
The first line contains T (1 ≤ T ≤ 100), the number of test cases. The first line of each test case contains an integer (2 ≤ N ≤ 100), the number of elements of the sequence. The next line contains N space separated integers. The sum of any subset of the numbers fit in a 32 bit signed integer.
Output
For each test case print the name of the winner. Follow the output format below.