#ABC144A. 9x9

9x9

题目描述

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 A×BA \times B, print the result; if he cannot, print -1 instead.

在学习了乘法表之后,高桥可以将 1199 (含)之间的两个整数相乘。他不能进行任何其他计算。

给出两个整数 AABB

如果高桥能计算出 A×BA \times B ,请打印结果;如果不能,请打印 -1

输入格式

输入内容按以下格式标准输入:

AA BB

输出格式

如果高桥能够计算 A×BA \times B ,则打印结果;如果不能,则打印 -1

样例 #1

样例输入 #1

2 5

样例输出 #1

10

样例 #2

样例输入 #2

5 10

样例输出 #2

-1

样例 #3

样例输入 #3

9 9

样例输出 #3

81

说明

数据规模与约定

  • 1A201 \leq A \leq 20
  • 1B201 \leq B \leq 20
  • 所有输入值均为整数。

样例 11 解释

2×5=102 \times 5 = 10 .

样例 22 解释

5×10=505\times 10 = 50 但高桥不能进行这种计算,所以打印 -1 代替。