import std.metastrings;template p(int n){static if(n)const p=Format!(n)~p!(n-1);else const p="";}pragma(msg,p!(82));