Problem G: 判断数正负

Problem G: 判断数正负

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 1377  Solved: 618
[Status] [Submit] [Creator:]

Description

给定一个整数a,判断其正负。

如果 a > 0,输出 positive;

如果 a = 0,输出 zero;
如果 a < 0,输出 negative。

Input

输入一个整数,用a表示。

Output

如果a > 0,输出 positive;

如果a == 0,输出 zero;
如果a < 0,输出 negative。

Sample Input Copy

10

Sample Output Copy

positive

HINT