template f(int n){static if(n>8)const f=f!(n-9)~f!(n-8);else const f="012345678"[n..n+1];}pragma(msg,f!(72));