Alice and Bob are playing a game.
There are n monsters in the game, and they stand in a line. Alice and Bob take turns. Each turn, the pla
Here is an example of operation 2, if �=2K=2 and there are four monsters ����ABCD in the field. Now we can destroy monsters ��BC because they are continuous, and after destroying them we can be left with monsters ����AeeD (�e means the area is empty). But we cannot destroy the monster ��AB or ��CD, because the remaining two sequences must be non-empty (in fact, if we do this, only one continuous sequence remains). Similarly, we can't destroy monsters ��AC or ��BD because monsters �A and �C are not continuous.
When a pla
An integer �T indicates that there are �T groups of data.
Next �T rows. Enter two integers �K and �n on each line.
Guarantee 1≤�≤10000,2≤�≤107,0≤�≤1091≤T≤10000,2≤K≤107,0≤n≤109.
Output total �T lines.
If Alice can win, output "Alice", otherwise output "Bob".
2
2 2
2 3
Alice
Bob