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

Search Number ⭐

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.

Finally, read another integer k and search for k in the array. If found, show its position; otherwise, indicate that it was not found.

Hints:

Input

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

Output

If k is found, display Posicion {index} (where {index} is the 0-based position). If k is not found, display No encontrado.

Example

Input:

5
3
7
1
9
5
9

Output:

Posicion 3