RYIP在线题库
首 页   >   习题练习   >   提交
Problem2096--判断数正负

2096: 判断数正负

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

【 Description 】

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


【 Input 】

一个整数N(-10^9 <= N <= 10^9)

【 Output 】

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


【 Sample Input 】

1

【 Sample Output 】

positive

【 Source/Category 】