Problem1185--末尾数统计

1185: 末尾数统计

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

Description

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

Input

第一行N(1<=N<=1000),第二行接着输入N个数。

Output

统计末尾数为8的个数。若找不到则输出"Not found!"

Sample Input Copy

5
12 788 2342281 345 888

Sample Output Copy

T=2

Source/Category