시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 256 MB172868151.592%

문제

Alice and Bob are playing a turn-based game. The rules of the game are as follows:

  1. At the beginning of the game some binary string $s$ is chosen.
  2. On his turn player has to choose some substring $t$ of $s$, equal to one of 10, 110, 100, 1010. Then the player has to reverse $t$. For example, if $s = $010101, the player can select substring $t = $1010 and reverse it, obtaining $s = $001011
  3. he player who can’t make a move (who can’t choose an appropriate substring $t$) loses.
  4. The players cannot skip a turn.

Which player has the winning strategy, if Alice moves first?

A string $a$ is a substring of a string $b$ if $a$ can be obtained from $b$ by deletion of several (possibly, zero or all) characters from the beginning and several (possibly, zero or all) characters from the end.

입력

The only line of the input contains a binary string $s$ ($1 \le |s| \le 10^6$) — the string with which Alice and Bob play.

출력

If Alice wins, output Alice. Otherwise, output Bob.

예제 입력 1

010

예제 출력 1

Alice

예제 입력 2

1111

예제 출력 2

Bob

예제 입력 3

1010

예제 출력 3

Bob

예제 입력 4

1010001011001

예제 출력 4

Alice

힌트

In the first sample, Alice can choose substring 10 of 010 and reverse it, obtaining string 001. Bob can’t make any move with this string, and loses.

In the second sample, Alice can’t make a single move and loses.