Ashish and Jeel are playing a game. They are given a multiset of arrays (initially only one array is present).
A player has to make the following move in their turn:
Formally, if we split an array of size into arrays and , then the following conditions must hold:
A player loses if he cannot make a move. Both the players play the game optimally. If Jeel plays first, then determine who wins the game.
Input format
Output format
For each test case, print the winner of the game "Jeel" or "Ashish" (without quotes).
Answer for each test case should come in a new line.
Input Constraints
In the first testcase, no matter what move Jeel makes first, Ashish can always make the second move, and Jeel will be left with 3 arrays of size 1. Hence Ashish wins.
In the second testcase, Jeel cannot make any move in the first turn itself, and hence he loses.
In the third testcase, there is only one possible move, and after Jeel cut the array into [1, 1] and [3], Ashish cannot make any move, and he loses.