Simple Game
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
64bit IO Format: %lld

题目描述

Alice and Bob are playing a game on a sequence of length n. They move in turns and Alice moves first.

At each player's turn, he or she should select an integer and remove it from the sequence. The game ends when there is no integer left in the sequence.

Assume the sum of integers selected by Alice is S_1 and the sum of integers selected by Bob is S_2.

If the difference between S_1 and S_2 is odd, Alice wins; Otherwise, Bob wins.

Your task is to determine who will win the game if both players play optimally.

输入描述:

The first line contains an integer , indicating the length of the sequence.

The second line contains n integers , indicating the elements of the sequence.

输出描述:

The first line output ''Alice'' (without quotes) if Alice wins and ''Bob'' (without quotes) otherwise. 
It is obvious that there is no draw.
示例1

输入

复制
5
1 2 3 4 5

输出

复制
Alice
示例2

输入

复制
2
2 4

输出

复制
Bob