import std.metastrings;template f(int x,real y){static if(x<31)const f="x = "~Format!(x/10,".",x%10,", y = ",cast(int)y)~"."~Format!(cast(int)(y*1e6+.5))[$-6..$]~\n~f!(x+1,y*6.631025/6);else const f="";}pragma(msg,f!(0,1.));