#C1437. Taco Game Winner Determination
Taco Game Winner Determination
Taco Game Winner Determination
This problem involves determining the winner of a simple game between Alice and Bob. The game is played on a sequence of integers, and the outcome is uniquely determined by the parity of the number of elements in the sequence. In particular, if the number of elements \( n \) is odd, then Alice wins; otherwise, Bob wins.
Note: The actual values in the sequence do not affect the outcome and are provided for the sake of completeness.
inputFormat
The input is read from standard input (stdin).\n\nThe first line of input contains an integer ( n ) which represents the length of the sequence.\nThe second line contains ( n ) space-separated integers representing the sequence.
outputFormat
Output to standard output (stdout) a single line containing the winner of the game: either "Alice" or "Bob". The result is "Alice" if ( n ) is odd, and "Bob" otherwise.## sample
3
1 3 2
Alice