Problem1002--§1 3 正负数判断

1002: §1 3 正负数判断

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

Description

输入一个整数 $n$。判断其正负性。整数是 32 位有符号整数。

Input

只有一行,包含一个整数 $n$。

Output

只有一行。
如果 $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

Source/Category