K. Hassan VS Naya
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Hassan and his friend Naya are nerds at math and are always fighting about who is better, as they are in the same class. One day their coach Bassam decided to give them an array $$$A$$$ of size $$$N$$$ and they will play the following game alternately for $$$N-1$$$ rounds.

Naya plays first, at each round a player takes any two elements $$$X$$$, $$$Y$$$ from the array, erases them, then adds $$$\gcd(X,Y)$$$ to the end of $$$A$$$. It can be shown that after $$$N-1$$$ rounds $$$A$$$ will have only one element.

For example, let $$$A=[3,8,5,12,1]$$$, if a player chooses $$$8$$$ and $$$12$$$, then $$$A$$$ becomes $$$[3,5,1,4]$$$.

Naya wins if at the end of the game $$$A=[1]$$$, otherwise Hassan wins. Your task is to find the winner of the game, knowing that both players play optimally.

Here, $$$\gcd(X,Y)$$$ denotes the greatest common divisor for $$$X$$$ and $$$Y$$$, for example $$$\gcd(12,8)=4$$$ and $$$\gcd(15,14)=1$$$.

Input

The first line contains a single integer $$$N$$$ $$$(1 \le N \le 2*10^5)$$$ — the length of the array.

The second line contains $$$N$$$ integers $$$A_1,A_2,...,A_N$$$ $$$(1 \le A_i \le 10^9)$$$ — the elements of the array.

Output

Print a single line, the winner of the game — 'Hassan' or 'Naya'.

Examples
Input
2
1 2
Output
Naya
Input
3
8192 1048576 128
Output
Hassan