Alice and Bob play a sequence folding game. The game runs in this order.
Given a sequence of N integers, write a program that finds the winner of the game.
The first line has the number of test cases T (1≤T≤100). Each test case starts with a line holding the length of the sequence N (2≤N≤100), followed by a line with the N integers of the sequence separated by spaces. Every integer fits in the signed 32-bit range.
For each test case print one line, either Case #x: Alice or Case #x: Bob, where x is the test case number starting from 1. Print Alice when Alice wins and Bob when Bob wins.