#C5075. Taco Game Winner

    ID: 48684 Type: Default 1000ms 256MiB

Taco Game Winner

Taco Game Winner

In this problem, Alice and Bob are playing a simple game with a list of integers. The rules of the game are as follows:

Given a list of n integers, if n is even, then Alice wins the game; if n is odd, then Bob wins the game. The actual values in the list do not affect the outcome of the game; only the number of integers matters.

For clarity, the condition can be expressed in LaTeX as:

(\text{winner} = \begin{cases}\text{Alice} & \text{if } n \equiv 0 \pmod{2},\ \text{Bob} & \text{if } n \equiv 1 \pmod{2}.\end{cases})

Your task is to determine the winner given the number of integers and the list itself.

inputFormat

The input consists of two lines. The first line contains a single integer (n) representing the number of elements in the list. The second line contains (n) space-separated integers.

outputFormat

Output a single line with the name of the winner: either "Alice" or "Bob".## sample

5
1 2 3 4 5
Bob

</p>