Alice and Bob play the game, "Divide and Destroy".
At the beginning of the game, there is a bunch of stones with ni stones. Alice and Bob take turns (Alice is the first). In her turn, Alice can divide any bunch into two. The stones in these new piles are divided equally (if this cannot be done, one more stone is placed in one of them). Bob can destroy any bunch in his turn (pick it up and remove it from the game). If one of the players gets a situation where there is one stone in all the handfuls, he loses.
Which of them will win, with the optimal game of both players.
Input format
Output format
You are required to print t lines. Each of these lines contains the answer to the test. If Alice wins, print "Alice" and if Bob wins, print "Bob".
Constraints
t≤5∗105
1≤ni≤1018
Since we have a pile of size 2, after Alice's move, there will be two piles of size 1 each, so Bob loses and Alice wins.
Since we have a pile of size 3, Alice will divide this pile into two piles of size 1 and 2, respectively, and Bob will destroy the pile of size 2, Alice will be left with a pile of size 1, she loses, Bob wins.