#include <cstdio>
template <typename F>
void repeat(unsigned n, F f)
{
while (n--) f();
}
int main(int argc, const char *argv[])
{
repeat(10, []{puts("puts");});
}
I2luY2x1ZGUgPGNzdGRpbz4KCnRlbXBsYXRlIDx0eXBlbmFtZSBGPgp2b2lkIHJlcGVhdCh1bnNpZ25lZCBuLCBGIGYpCnsKICAgIHdoaWxlIChuLS0pIGYoKTsKfQoKaW50IG1haW4oaW50IGFyZ2MsIGNvbnN0IGNoYXIgKmFyZ3ZbXSkKewogICAgcmVwZWF0KDEwLCBbXXtwdXRzKCJwdXRzIik7fSk7Cn0K