{"raw_statement":[{"iden":"problem statement","content":"Having learned the multiplication table, Takahashi can multiply two integers between $1$ and $9$ (inclusive) together.\nGiven 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`."},{"iden":"constraints","content":"*   $1 \\leq N \\leq 100$\n*   $N$ is an integer."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$"},{"iden":"sample input 1","content":"10"},{"iden":"sample output 1","content":"Yes\n\n$10$ can be represented as, for example, $2 \\times 5$."},{"iden":"sample input 2","content":"50"},{"iden":"sample output 2","content":"No\n\n$50$ cannot be represented as the product of two integers between $1$ and $9$."},{"iden":"sample input 3","content":"81"},{"iden":"sample output 3","content":"Yes"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}