101441: [AtCoder]ABC144 B - 81

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $200$ points

Problem Statement

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.


Sample Input 1

10

Sample Output 1

Yes

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


Sample Input 2

50

Sample Output 2

No

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


Sample Input 3

81

Sample Output 3

Yes

Input

题意翻译

给定一个正整数 $N$,如果 $N$ 能表示成两个正整数 $a$,$b$( $1\leq a,b\leq 9$ )的乘积,输出`Yes`,否则输出`No`。

加入题单

算法标签: