1440: 整数的符号

Memory Limit:128 MB Time Limit:1.000 S Judge Style:Text Compare Creator:
Submit:27 Solved:9

Description

根据输入整数,判断其符号是正、符或0。

不允许普通用户打印题目,请教师登录后使用。如有疑问请联系管理员!

Input

每行一个整数k(-10000 <= k <= 10000 )。

Output

对输入的每个整数输出一行,符号为正、符或0分别输出“Positive, Negative, Zero”。

Sample Input Copy

3
-12
0
456

Sample Output Copy

Positive
Negative
Zero
Positive