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:
for loop to read the data and store it in the array.k.break).An integer N, followed by N integers, one per line, followed by an integer k.
Display {count} veces where {count} is the number of times k appears.
Input:
6
3
5
3
7
3
1
3
Output:
3 veces