Coding is the closest thing we have to superpower !
超能侠知道了整数分为正整数、负整数和零。 给定一个整数 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