3417: 判断数正负

Memory Limit:256 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

[md] 给定一个整数$N$,判断其正负。如果$N>0$,输出$positive$;如果$N=0$,输出$zero$;如果$N<0$,输出$negative$。 [/md]

Sample Input Copy

1

Sample Output Copy

positive