Problem Description
Alice and Bob are playing a game that consists of rounds. For each round, exactly one of them wins.
The number of rounds is odd, so it is guaranteed that there will be no tie in the total number of rounds won.
Your task is to determine who wins the game overall — the player who wins more rounds.
Input Format
The first line contains a single integer () — the number of rounds.
The second line contains characters, each being either:
A— Alice won that roundB— Bob won that round
Output Format
Print one line consisting of "Alice" if Alice won more rounds — "Bob" otherwise.
Scoring
| Subtasks | Additional constraints | Points | Required Subtasks |
|---|---|---|---|
| Sample | — | ||
Examples
Example 1
Input
3 ABA
Output
Alice
Example 2
Input
1 B
Output
Bob