atcoder#AGC002A. [AGC002A] Range Product
[AGC002A] Range Product
Problem Statement
You are given two integers and (). Determine if the product of the integers , , , is positive, negative or zero.
Constraints
- and are integers.
Partial Score
- In test cases worth points, .
Input
The input is given from Standard Input in the following format:
Output
If the product is positive, print Positive
. If it is negative, print Negative
. If it is zero, print Zero
.
1 3
Positive
is positive.
-3 -1
Negative
is negative.
-1 1
Zero
.