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