| AGM 2023 Qualification Round |
|---|
| Finished |
Charlie and Dan play a game on $$$N$$$ piles numbered from $$$1$$$ to $$$N$$$ from left to right. Each pile contains a strictly positive number of stones.
The rules are simple:
Who wins the game?
The first line of input will contain an integer $$$N$$$ ($$$2\leq N \leq 10^3$$$), the number of piles.
The next line contains $$$N$$$ integers $$$v_1, v_2, ... , v_n$$$ ($$$1\leq v_i \leq 10^9$$$).
The output should contain the name of the winner of the game: "Charlie" or "Dan".
3 2 2 2
Charlie
| Name |
|---|


