Home => ProblemSet => 1.4-01:判断数正负
Problem1040--1.4-01:判断数正负

1040: 1.4-01:判断数正负

Time Limit: 1 Sec  Memory Limit: 128 MB  Submit: 14  Solved: 22
[ Submit ] [ Status ] [ Creator: ][ 参考程序 ]

Description

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

Input

一个整数N(-109 <= N <= 109)

Output

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

Sample Input Copy

1

Sample Output Copy

positive