#abc190a. [abc190_a]Very Very Primitive Game
[abc190_a]Very Very Primitive Game
Problem Statement
Takahashi and Aoki will play a game against each other.
Initially, Takahashi and Aoki have and candies, respectively.
They will alternately do the operation below. Takahashi goes first if , and Aoki goes first if .
- Eat one of the candies he has.
The person who first becomes unable to do the operation loses. Which person will win?
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
If Takahashi will win, print Takahashi
; if Aoki will win, print Aoki
.
Sample Input 1
2 1 0
Sample Output 1
Takahashi
Initially, Takahashi and Aoki have and candy(ies), respectively. The game will proceed as follows:
- Takahashi eats his candy.
- Aoki eats his candy.
- Takahashi eats his candy.
- Aoki has no more candies, so Takahashi wins.
Sample Input 2
2 2 0
Sample Output 2
Aoki
Sample Input 3
2 2 1
Sample Output 3
Takahashi