Problem1184--末尾数

1184: 末尾数

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

给出N个正整数,请统计出N个数中末尾数为0的数的个数。

Input

第1行,输入一个整数N。
第2行开始,输入N个整数,每输入一个整数后换行。

Output

输出一行,为统计出的N个数中末尾数为0的个数。

Sample Input Copy

5
123
1530
6721
20000
9028

Sample Output Copy

2

HINT

【数据规模】
 0≤N≤32767

Source/Category