1120: 【基础题】判断正负

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:23 Solved:15

Description

给定一个整数 N,判断其正负。如果 N>0, 输出 positive ; 如果 N=0, 输出 zero ; 如果 N<0, 输出 negative。

Input

单行,为一个整数

Output

判断该数的正负属性。

Sample Input Copy

95

Sample Output Copy

positive