#include using namespace std; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; template using V=vector; template using VV=V>; map prime_factor(ll x){ map res; for(ll i=2;i*i<=x;i++){ while(x%i==0){ res[i]++; x/=i; } } if(x!=1) res[x]++; return res; } int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); string s; cin>>s; int n=s.size(); auto p=prime_factor(n); int m=p.size(); V C; for(auto [a,b]:p){ int tmp=1; rep(j,b) tmp*=a; C.push_back(a); } V D; for(int bit=1;bit<(1< B(26); for(int k=j;kcnt){ mi=cnt; t=b; } } } rep(j,t){ V B(26); for(int k=j;k