#include #include using namespace std; int n; vector v; void calc(int m){ int a=m; for(int i=2; i<=m; ++i){ if(a==1) break; if(a%i==0){ int x=0; while(1){ if(a%i!=0){ v.push_back(x); x=0; break; } a/=i; x+=1; } } } } int main(){ cin>>n; int m; for(int i=0; i>m; calc(m); } int x=0; for(int i=0; i