https://atcoder.jp/contests/abc144/tasks/abc144_b
解説
https://atcoder.jp/contests/abc144/submissions/8155035
2つの整数の積として表現できるかということなので、その2つの整数を全探索する。
それぞれ9種類なので、全体で81通りなので、間に合う。
int N; //--------------------------------------------------------------------------------------------------- void _main() { cin >> N; rep(a, 1, 10) rep(b, 1, 10) if (a * b == N) { cout << "Yes" << endl; return; } cout << "No" << endl; }