Reverse Game
Alice and Bob are playing a turn-based game. The rules of the game are as follows:
At the beginning of the game some binary string is chosen.
On his turn player has to choose some substring of , equal to one of . Then the player has to reverse . For example, if , the player can select substring and reverse it, obtaining .
The player who can’t make a move (who can't choose an appropriate substring ) loses.
The players cannot skip a turn.
Which player has the winning strategy, if Alice moves first?
A string is a substring of a string if can be obtained from by deletion of several (possibly, zero or all) characters from the beginning and several (possibly, zero or all) characters from the end.
Input
The only line contains a binary string — the string with which Alice and Bob play.
Output
If Alice wins, output Alice. Otherwise, output Bob.
Examples
In the first sample, Alice can choose substring of and reverse it, obtaining string . Bob can't make any move with this string, and loses.
In the second sample, Alice can’t make a single move and loses.