#ABC144B. 81
81
题目描述
Having learned the multiplication table, Takahashi can multiply two integers between and (inclusive) together.
Given an integer , determine whether can be represented as the product of two integers between and . If it can, print Yes
; if it cannot, print No
.
学习了乘法表后,高桥可以将 和 (含)之间的两个整数相乘。(之间的两个整数相乘。
给定整数 ,判断 是否可以表示为 和 之间两个整数的乘积。如果可以,打印 "是";如果不能,打印 "否"。
输入格式
输入内容按以下格式标准输入:
输出格式
如果 可以表示为 和 (含)之间的两个整数的乘积,则打印 "是";如果不能,则打印 "否"。
样例 #1
样例输入 #1
10
样例输出 #1
Yes
样例 #2
样例输入 #2
50
样例输出 #2
No
样例 #3
样例输入 #3
81
样例输出 #3
Yes
说明
数据规模与约定
- 是整数。
样例 解释
例如, 可以表示为 。
样例 解释
不能表示为介于 和 之间的两个整数的乘积。