1527 - 判断正负数

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

Input

一个整数N

Output

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

Examples

Input

1

Output

positive

Input

0

Output

zero

Input

-1

Output

negative

Hint

F班训练题目

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