Problem1182--【例16.1】 判断数正负

1182: 【例16.1】 判断数正负

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 64 MB

Submit

Description

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

Input

[md] 一个整数$N$($-10^9≤N≤10^9$)。 [/md]

Output

[md] 如果$N>0$, 输出positive;
如果$N=0$, 输出zero;
如果$N<0$, 输出negative。 [/md]

Sample Input Copy

1

Sample Output Copy

positive

HINT

[md] [/md]

Source/Category