#K5506. Taco Game Winner

    ID: 29891 Type: Default 1000ms 256MiB

Taco Game Winner

Taco Game Winner

In the Taco Game, you are given a string S representing its initial configuration. The rules are straightforward: if the length of S is odd, Alice wins; if the length is even, Bob wins. Your task is to determine the winner solely based on the parity of the string's length.

This problem tests your ability to process simple input and perform a parity check. Make sure your solution reads from standard input (stdin) and writes to standard output (stdout).

inputFormat

The input consists of a single line containing a non-empty string S. The string will not contain any whitespace characters.

outputFormat

Output a single line containing the winner's name: either "Alice" (if the length of S is odd) or "Bob" (if the length is even).

## sample
aaa
Alice