#ABC144A. 9x9
9x9
题目描述
Having learned the multiplication table, Takahashi can multiply two integers between and (inclusive) together. He cannot do any other calculation.
Given are two integers and .
If Takahashi can calculate , print the result; if he cannot, print -1
instead.
在学习了乘法表之后,高桥可以将 和 (含)之间的两个整数相乘。他不能进行任何其他计算。
给出两个整数 和 。
如果高桥能计算出 ,请打印结果;如果不能,请打印
-1
。
输入格式
输入内容按以下格式标准输入:
输出格式
如果高桥能够计算 ,则打印结果;如果不能,则打印 -1
。
样例 #1
样例输入 #1
2 5
样例输出 #1
10
样例 #2
样例输入 #2
5 10
样例输出 #2
-1
样例 #3
样例输入 #3
9 9
样例输出 #3
81
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
.
样例 解释
但高桥不能进行这种计算,所以打印 -1
代替。