#agc002a. [agc002_a]Range Product
[agc002_a]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
.
Sample Input 1
1 3
Sample Output 1
Positive
is positive.
Sample Input 2
-3 -1
Sample Output 2
Negative
is negative.
Sample Input 3
-1 1
Sample Output 3
Zero
.