Problem1627--判断数正负

1627: 判断数正负

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

给定一个整数N,判断其正负。

如果N 大于 0,输出positive;

如果N 等于 0,输出zero;

如果N 小于 0,输出negative。

Input

一个整数N。

Output

如果N>0, 输出positive; 如果N=0, 输出zero; 如果N<0, 输出negative。

Sample Input Copy

1

Sample Output Copy

positive

Source/Category