#include #include #include #include #include #include #include #include #include #include #include #include #include #include #define rep(i, a, b) for (int i = (a); i < (b); ++i) #define MOD 1000000007 #define int long long using ll = long long; using namespace std; const int INF = 1LL << 50; using P = pair; template bool chmin(T &a, T b) { if (a > b) { a = b; return true; } else { return false; } } template bool chmax(T &a, T b) { if (a < b) { a = b; return true; } else { return false; } } struct Setup { Setup() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); } } SETUP; signed main() { int n; cin >> n; vector as; for (int i = 1; i * i <= n; i++) { if (n % i == 0) { string a = to_string(n / i); string b = to_string(i); as.push_back(a + b); } } int ans = 0; for (auto &s : as) { sort(s.begin(), s.end()); ans++; if (next_permutation(s.begin(), s.end())) { ans++; } } cout << ans << endl; }