301039 - 判断数正负

通过次数

123

提交次数

218

Time Limit : 5 秒
Memory Limit : 128 MB

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

Input

输入一个整数N(−10^9≤N≤10^9)。

Output

如果N>0N>0, 输出positive

如果N=0N=0, 输出zero

如果N<0N<0, 输出negative

Examples

Input

1

Output

positive