eolymp
Competitions

Week 2 Conditionals Part 2

Positive, negative or zero

Time limit 1 second
Memory limit 128 MiB

One integer n is given. Print whether it is positive, negative or equals to 0.

Input data

One integer n, no more than 10^9 by absolute value.

Output data

Print "Positive", "Negative" or "Zero" depending on the value of n.

Examples

Input example #1
45
Output example #1
Positive
Input example #2
0
Output example #2
Zero
Input example #3
-12
Output example #3
Negative
Author Mykhailo Medvediev
Source Programming language C