Drop links or images here to add them to the editor.

Any Negative ⭐

Read an integer N. This number indicates how many values the array will have.

Then, read N integers (one per line) and store them in an array.

Check if at least one number in the array is negative (less than zero).

Hints:

Input

An integer N, followed by N integers, one per line.

Output

If there is at least one negative number, display Hay negativos. Otherwise, display Ninguno negativo.

Examples

Input:

4
5
3
8
1

Output:

Ninguno negativo

Input:

4
5
-3
8
1

Output:

Hay negativos