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