2736: 【例16.1】 判断数正负
Memory Limit:64 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:119
Solved:62
Description
给定一个整数$N$,判断其正负。如果$N>0$,输出
positive
;如果$N=0$,输出zero
;如果$N<0$,输出negative
。Input
一个整数$N$($-10^9≤N≤10^9$)。
Output
如果$N>0$, 输出
positive
;n如果$N=0$, 输出zero
;n如果$N<0$, 输出negative
。
Sample Input Copy
1
Sample Output Copy
positive