#C11254. Alice's Unbeatable Painting Game
Alice's Unbeatable Painting Game
Alice's Unbeatable Painting Game
In this problem, you are given a painting game where Alice and Bob take turns painting cells on a grid. The grid consists of cells. Since the total number of cells is finite, i.e., , Alice, who always starts the game, can always secure the win by ensuring she paints the last cell. For each test case, regardless of the grid dimensions or the extra parameter , output the winner of the game. (Note: Although is part of the input, it does not affect the outcome in this simplified version.)
inputFormat
The first line contains an integer , the number of test cases. Each of the following lines contains three integers: , , and , separated by spaces.
outputFormat
For each test case, output a single line containing the name of the winner, which will always be "Alice".## sample
3
2 2 3
2 3 2
1 1 1
Alice
Alice
Alice
</p>