#P86. 【例16.1】 判断数正负

【例16.1】 判断数正负

Description

Given an integer NN, determine if it is positive, zero, or negative. If N>0N>0, output positive; if N=0N=0, output zero; if N<0N<0, output negative.

Input Format

One integer NN (109N109-10^9 \le N \le 10^9).

Output Format

If N>0N>0, output positive;

If N=0N=0, output zero;

If N<0N<0, output negative.

Sample

1
positive