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