Problem4510--正负数判断

4510: 正负数判断

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

Description

给定一个整数 lns="http://www.w3.org/1998/Math/MathML">n,若 lns="http://www.w3.org/1998/Math/MathML">n 为正数,输出 Positive,若 lns="http://www.w3.org/1998/Math/MathML">n 为负数,输出 Negative,若 lns="http://www.w3.org/1998/Math/MathML">n 恰好为零,输出 Zero

Input

单个整数:表示给定的 lns="http://www.w3.org/1998/Math/MathML">n

−1,000,000≤n≤1,000,000


Output

按照描述输出结果

Sample Input Copy

100

Sample Output Copy

Positive

Source/Category