1256 统计立方数


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 32M

Problem types
Allowed languages
C, C++, Java, Python

Description

有一堆正整数,统计其中有多少立方数。

Input

输入数据有一些正整数,其每个数都小于2^32。若该数为0,则应结束统计。

Output

输出所统计的立方数个数。

Sample

Input

1 3 5 7 9 11 15 17 19 21 23 25 27 0

Output

2

Comments

There are no comments at the moment.