Coding is the closest thing we have to superpower !

270 : 条件语句-判断正负
描述

超能侠知道了整数分为正整数、负整数和零。 
给定一个整数 N, 判断其正负。

输入

一个整数 N\left(-10^{9} \leq N \leq 10^{9}\right)

输出

如果 N>0, 输出 positive
如果 N=0, 输出 zero 
如果 N<0, 输出 negative

样例

输入

1

输出

positive

输入

-1

输出

negative

输入

0

输出

zero
语言:
主题: