Competitions
PP2. Week 1: March 1 - 7
Positive, negative or zero
Given one integer n. Print is it positive, negative or equals to 0.
Input
One integer n, not bigger than 109
by absolute value.
Output
Print "Positive", "Negative" or "Zero" depending on the value of n.
Input example #1
45
Output example #1
Positive
Input example #2
0
Output example #2
Zero
Input example #3
-12
Output example #3
Negative