eolymp
bolt
Try our new interface for solving problems
Problems

Positive, negative or zero

Positive, negative or zero

One integer $n$ is given. Print whether it is positive, negative, or equal to $0$. \InputFile One integer $n$, no more than $10^9$ by absolute value. \OutputFile Print \textbf{"Positive"}, \textbf{"Negative"} or \textbf{"Zero"} depending on the value of $n$.
Time limit 1 second
Memory limit 128 MiB
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