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

All Positive ⭐

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 all numbers in the array are positive (greater than zero).

Hints:

Input

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

Output

If all numbers are positive, display Todos positivos. Otherwise, display No todos positivos.

Examples

Input:

4
5
3
8
1

Output:

Todos positivos

Input:

4
5
-3
8
1

Output:

No todos positivos