#D8907. 81

    ID: 7406 Type: Default 2000ms 1073MiB

81

81

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

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

Constraints

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

Input

Input is given from Standard Input in the following format:

N

Output

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

Examples

Input

10

Output

Yes

Input

50

Output

No

Input

81

Output

Yes

inputFormat

Input

Input is given from Standard Input in the following format:

N

outputFormat

Output

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

Examples

Input

10

Output

Yes

Input

50

Output

No

Input

81

Output

Yes

样例

10
Yes