#abc144a. [abc144_a]9x9

[abc144_a]9x9

Problem Statement

Having learned the multiplication table, Takahashi can multiply two integers between 11 and 99 (inclusive) together. He cannot do any other calculation.

Given are two integers AA and BB.

If Takahashi can calculate AtimesBA \\times B, print the result; if he cannot, print -1 instead.

Constraints

  • 1leqAleq201 \\leq A \\leq 20
  • 1leqBleq201 \\leq B \\leq 20
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

AA BB

Output

If Takahashi can calculate AtimesBA \\times B, print the result; if he cannot, print -1.


Sample Input 1

2 5

Sample Output 1

10

2times5=102 \\times 5 = 10.


Sample Input 2

5 10

Sample Output 2

-1

5times10=505\\times 10 = 50, but Takahashi cannot do this calculation, so print -1 instead.


Sample Input 3

9 9

Sample Output 3

81