1002: §1 3 正负数判断
[Creator : ]
Description
输入一个整数 $n$。判断其正负性。整数是 32 位有符号整数。
Input
只有一行,包含一个整数 $n$。
Output
只有一行。
如果 $n>0$,输出 positive。
如果 $n=0$,输出 zero。
如果 $n<0$,输出 negative。
如果 $n>0$,输出 positive。
如果 $n=0$,输出 zero。
如果 $n<0$,输出 negative。
Sample 1 Input
1
Sample 1 Output
positive
Sample 2 Input
0
Sample 2 Output
zero
Sample 3 Input
-5
Sample 3 Output
negative