#abc144b. [abc144_b]81
[abc144_b]81
Problem Statement
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
.
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
If can be represented as the product of two integers between and (inclusive), print Yes
; if it cannot, print No
.
Sample Input 1
10
Sample Output 1
Yes
can be represented as, for example, .
Sample Input 2
50
Sample Output 2
No
cannot be represented as the product of two integers between and .
Sample Input 3
81
Sample Output 3
Yes