#D9224. Surmise
Surmise
Surmise
D: Sontaku (Surmise)
Some twins like even numbers.
Count how many even numbers are in integers .
input
The integer is given on the first line.
On the second line, integers are given, separated by blanks.
output
Output an even number. However, insert a line break at the end.
Constraint
- is an integer greater than or equal to and less than or equal to
- are integers between and
Input example 1
Five 4 3 5 2 6
Output example 1
3
, and are even numbers. Therefore, the even number is .
Input example 2
3 2 2 2
Output example 2
3
Even if the numbers are the same, if the positions in are different, they are counted as different numbers.
Example
Input
5 4 3 5 2 6
Output
3
inputFormat
input
The integer is given on the first line.
On the second line, integers are given, separated by blanks.
outputFormat
output
Output an even number. However, insert a line break at the end.
Constraint
- is an integer greater than or equal to and less than or equal to
- are integers between and
Input example 1
Five 4 3 5 2 6
Output example 1
3
, and are even numbers. Therefore, the even number is .
Input example 2
3 2 2 2
Output example 2
3
Even if the numbers are the same, if the positions in are different, they are counted as different numbers.
Example
Input
5 4 3 5 2 6
Output
3
样例
5
4 3 5 2 6
3