Problem1080--统计正数

1080: 统计正数

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

Description

输入若干整数,以 0 结尾,统计其中有多少个正整数。

Input

一行若干整数,最后一个为 0。

Output

一行一个整数,表示输入的数据中正整数的个数。

Sample Input Copy

3 6 -3 2 0

Sample Output Copy

3

Source/Category