100 atcoder#ABC144B. [ABC144B] 81
[ABC144B] 81
Score : points
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
.
10
Yes
can be represented as, for example, .
50
No
cannot be represented as the product of two integers between and .
81
Yes