#C8885. Taco Game Winner
Taco Game Winner
Taco Game Winner
Alice and Bob are playing the Taco game. In this game, a list of integers is given and the outcome is determined solely by the number of integers in the list. Specifically, if the number of integers N is even, then Alice wins, and if N is odd, then Bob wins. This can be summarized by the formula: if \(N \mod 2 = 0\) then Alice wins, otherwise if \(N \mod 2 = 1\) then Bob wins.
The rules are simple: you will be given multiple test cases. For each test case, the input provides an integer N followed by a list of N integers which are irrelevant to the outcome. Your task is to determine the winner of each game based on the parity of N.
inputFormat
The first line of input contains an integer T representing the number of test cases.
For each test case, the first line contains an integer N - the number of integers in the list. The second line contains N space-separated integers.
outputFormat
For each test case, output a single line containing either "Alice" if N is even, or "Bob" if N is odd.
## sample2
4
1 3 3 6
3
1 2 3
Alice
Bob
</p>