template f(string s,int n){static if(n)auto f=f!(n<7?s~s:s~s~s~s~s,n-1);else const f=s~\n~s;}pragma(msg,f!("9",9));