#10600. 判断数正负

判断数正负

Description

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

## Input Format

一个整数$N(-10^9 ≤ N ≤ 10^9)$。

## Output Format

如果$N > 0$, 输出$positive$;

如果$N = 0$, 输出$zero$;

如果$N < 0$, 输出$negative$。

```input1 1

```output1
positive