#1008. 统计偶数的个数

统计偶数的个数

题目描述

输入一个正整数N,接下来循环输入N个整数,并且统计输出偶数的个数。

输入

一个正整数N

输出

偶数的个数

Samples

10
1 2 3 4 5 6 7 8 9 10
5