Problem10786--ABC144 - B - 81

10786: ABC144 - B - 81

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

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`.

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`.

Constraints

-   $1 \leq N \leq 100$
-   $N$ is an integer.

Sample 1 Input

10

Sample 1 Output

Yes

$10$ can be represented as, for example, $2 \times 5$.

Sample 2 Input

50

Sample 2 Output

No

$50$ cannot be represented as the product of two integers between $1$ and $9$.

Sample 3 Input

81

Sample 3 Output

Yes

Source/Category