CF914B Conan and Agasa play a Card Game
Description
Edogawa Conan got tired of solving cases, and invited his friend, Professor Agasa, over. They decided to play a game of cards. Conan has $ n $ cards, and the $ i $ -th card has a number $ a_{i} $ written on it.
They take turns playing, starting with Conan. In each turn, the player chooses a card and removes it. Also, he removes all cards having a number strictly lesser than the number on the chosen card. Formally, if the player chooses the $ i $ -th card, he removes that card and removes the $ j $ -th card for all $ j $ such that $ a_{j}
Input Format
The first line contains an integer $ n $ ( $ 1
Output Format
If Conan wins, print "Conan" (without quotes), otherwise print "Agasa" (without quotes).
Explanation/Hint
In the first example, Conan can just choose the card having number $ 7 $ on it and hence remove all the cards. After that, there are no cards left on Agasa's turn.
In the second example, no matter which card Conan chooses, there will be one one card left, which Agasa can choose. After that, there are no cards left when it becomes Conan's turn again.