#import #import using namespace std; bool p(const int m, const int n) { const int d1 = m % 10; const int d2 = n % 10; if (d1 != d2) { return false; } const int m_d = floor(log10(m)+1); const int n_d = floor(log10(n)+1); int t1 {0}; int t2 {0}; for (int i = 0; i < m_d; ++i) { t1 += d1 * pow(10, i); } if (m != t1) { return false; } for (int i = 0; i < n_d; ++i) { t2 += d2 * pow(10, i); } if (n != t2) { return false; } return true; } int main() { int n; int x; cin >> n; for (int i = 1; i <= sqrt(n); ++i) { if (n % i == 0) { x += p(i, n/i) || i == sqrt(n) ? 1 : 2; } } cout << x << endl; }