#abc144b. [abc144_b]81

[abc144_b]81

Problem Statement

Having learned the multiplication table, Takahashi can multiply two integers between 11 and 99 (inclusive) together.

Given an integer NN, determine whether NN can be represented as the product of two integers between 11 and 99. If it can, print Yes; if it cannot, print No.

Constraints

  • 1leqNleq1001 \\leq N \\leq 100
  • NN is an integer.

Input

Input is given from Standard Input in the following format:

NN

Output

If NN can be represented as the product of two integers between 11 and 99 (inclusive), print Yes; if it cannot, print No.


Sample Input 1

10

Sample Output 1

Yes

1010 can be represented as, for example, 2times52 \\times 5.


Sample Input 2

50

Sample Output 2

No

5050 cannot be represented as the product of two integers between 11 and 99.


Sample Input 3

81

Sample Output 3

Yes