12101 - 判断数正负

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

Input

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

Output

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

Examples

Input

12

Output

positive
Time Limit 1 second
Memory Limit 128 MB
Discuss 题解 Stats
上一题 下一题