Problem2512--正数

2512: 正数

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

Description

输入6个实数,它们要么是正数,要么是负数。
请你统计并输出正数的个数。

Input

六个数字,每个占一行。

Output

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

Sample Input Copy

7
-5
6
-3.4
4.6
12

Sample Output Copy

4 positive numbers

HINT

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

Source/Category