Love Game
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
64bit IO Format: %lld

题目描述

Tmail Campu App has published new funcion of  "finding mate", which makes it extraordinarily convinient to find mates who share the same interest with you in a short time! Also, Tmail Campu is now holding various activities which not only provide many excellent gifts but also make finding soul mate greatly possible! 

Alice has just downloaded Tmail Campu App, and she find her boyfriend——Bob on it. And now, Alice and Bob are playing a romantic game!

The game involves n diamonds in the beginning, assuming x as the current number of diamonds, then for each turn, a player can operate once  according to the three options below:
  1. If  5 \mid x and x \geq 5, then he/her can choose to remove 5 diamonds.
  2. If  2 \mid x and x \geq 2, then he/her can choose to remove 2 diamonds. 
  3. If x \geq 1, then he/her can choose to remove 1 diamond.
The player who cannot make an operation on his/her turn will be the loser, and Alice always operates first. Your task is to find out who will win in this game if both players operate optimally.

输入描述:

The first line contains a single integer T (1 \leq T \leq 10^4) — the number of test cases. Then T test cases as following:

Each test case contains a single integer n (1 \leq n \leq 10^9)— the initial number.

输出描述:

For each test case, please output "Alice" if Alice wins the game or output "Bob" if Bob wins, if both players operate optimally.
示例1

输入

复制
3
1
3
5201314

输出

复制
Alice
Bob
Alice

说明

As for test case 1, Alice removes 1 diamond so that Bob can't operate anymore.
As for test case 2, after Alice removes 1 diamond, Bob can directly remove 2 diamonds so that Bob can't operate anymore.