#include<bits/stdc++.h> usingnamespace std; typedeflonglong ll; constdouble PI = acos(-1.0); constdouble eps = 1e-6; constint INF = 0x3f3f3f3f; intsolve(int n) { int factor = 2, cnt = 0; vector<int> a; while (n != 1) { if (n % factor != 0) { factor++; a.push_back(cnt); cnt = 0; } else { n = n / factor; cnt++; } } a.push_back(cnt);
int sum = 1; for (int i = 0; i < a.size(); i++) { sum *= (a[i] + 1); } return sum; } intmain() { std::ios::sync_with_stdio(false); freopen("data.in", "r", stdin); int n = 1; while (1) { int ret = solve(n); // cout << ret << endl;5 if (ret == 100) { cout << n << endl; break; } n++; } return0; }