You are given a sequence
How many good elements does the sequence contain?
Input Specification
The first line of input contains the positive integer
The second line of input contains
Output Specification
The first and only line of output must contain the number of good elements in the sequence.
Scoring
In test data worth at least
In test data worth at least
Sample Input 1
Copy
2
1 3
Sample Output 1
Copy
1
Sample Input 2
Copy
6
1 2 3 5 7 10
Sample Output 2
Copy
4
Sample Input 3
Copy
3
-1 2 0
Sample Output 3
Copy
1
Comments