#K9776. Taco Game Winner

    ID: 39105 Type: Default 1000ms 256MiB

Taco Game Winner

Taco Game Winner

In the Taco Game, you are given an integer n representing the total sum. Two players, Alice and Bob, compete, and the winner is determined as follows: if n modulo 4 is 0, then Bob wins; otherwise, Alice wins. Mathematically, the condition can be represented in LaTeX as:

$$n \bmod 4 = 0 \implies \text{Bob wins, otherwise Alice wins.}$$

Your task is to determine the winner for each game based on the input value of n.

inputFormat

The first line of input contains an integer T representing the number of test cases. Each of the following T lines contains one integer n, the total sum required for that test case.

outputFormat

For each test case, output a single line containing the winner (either "Alice" or "Bob").

## sample
3
1
2
3
Alice

Alice Alice

</p>