#51NODP948. 判断正负

判断正负

Description

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

Input Format

一个整数 N(109N109)N(-10^9 \le N \le 10^9)

Output Format

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

1
positive