xxxxxxxxxx
import core.stdc.stdio, std.algorithm, std.range, std.stdio;
void main() @nogc
{
"abc".repeat(1000).each!(s => printf("%.*s", s.length, s.ptr));
}