Problem3154--正数

3154: 正数

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

Description

输入6个实数,它们要么是正数,要么是负数。

请你统计并输出正数的个数。

Input

六个数字,每个占一行。

输入数字的绝对值不超过 100

Output

输出格式为 x positive numbers,其中  为正数的个数。

Sample Input Copy

7
-5
6
-3.4
4.6
12

Sample Output Copy

4 positive numbers

Source/Category