#abc169b. [abc169_b]Multiplication 2
[abc169_b]Multiplication 2
Problem Statement
Given integers , compute .
However, if the result exceeds , print -1
instead.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the value as an integer, or -1
if the value exceeds .
Sample Input 1
2
1000000000 1000000000
Sample Output 1
1000000000000000000
We have $1000000000 \\times 1000000000 = 1000000000000000000$.
Sample Input 2
3
101 9901 999999000001
Sample Output 2
-1
We have $101 \\times 9901 \\times 999999000001 = 1000000000000000001$, which exceeds , so we should print -1
instead.
Sample Input 3
31
4 1 5 9 2 6 5 3 5 8 9 7 9 3 2 3 8 4 6 2 6 4 3 3 8 3 2 7 9 5 0
Sample Output 3
0