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

Count Occurrences ⭐

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 count how many times k appears in the array.

Hints:

Input

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

Output

Display {count} veces where {count} is the number of times k appears.

Example

Input:

6
3
5
3
7
3
1
3

Output:

3 veces