#Z13101. 判断数的正负

判断数的正负

Description

Given an integer NN, determine its sign. If N>0N > 0, output positive; if N=0N = 0, output zero; if N<0N < 0, output negative.

Input Format

An integer NN (109N109-10^9 \leq N \leq 10^9).

Output Format

If N>0N > 0, output positive;
If N=0N = 0, output zero;
If N<0N < 0, output negative.

1

positive