#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; int C[]={2,3,5,7,11,13,17,19,23,29,31,37,41,43,47}; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); ll m; cin>>m; priority_queue> que; ll t=2; ll now=1; while(t<1e5){ que.push({t-1,now}); t*=2; now++; } queue que2; while(m>0){ while(que.top().first>m) que.pop(); que2.push(que.top().second); m-=que.top().first; } vector ANS; int nx=0; while(que2.size()){ ll a=que2.front(); que2.pop(); ll c=C[nx]; rep(i,a){ ANS.push_back(c); c*=C[nx]; } nx++; } int y=ANS.size(); cout<