#include <algorithm>
#include <cstring>
#include <iostream>
#include <string>
using namespace std;
int main() {
const auto bar = 13U;
const char multiplicand[] = "0, ";
const auto length = strlen(multiplicand);
const string foo(&*generate_n(string(bar * length, '\0').begin(), bar * length, [&]() {
static auto i = 0U;
return multiplicand[i++ % length];
}) - bar * length);
cout << foo;
}
I2luY2x1ZGUgPGFsZ29yaXRobT4KI2luY2x1ZGUgPGNzdHJpbmc+CiNpbmNsdWRlIDxpb3N0cmVhbT4KI2luY2x1ZGUgPHN0cmluZz4KdXNpbmcgbmFtZXNwYWNlIHN0ZDsKCmludCBtYWluKCkgewoJY29uc3QgYXV0byBiYXIgPSAxM1U7Cgljb25zdCBjaGFyIG11bHRpcGxpY2FuZFtdID0gIjAsICI7Cgljb25zdCBhdXRvIGxlbmd0aCA9IHN0cmxlbihtdWx0aXBsaWNhbmQpOwoJY29uc3Qgc3RyaW5nIGZvbygmKmdlbmVyYXRlX24oc3RyaW5nKGJhciAqIGxlbmd0aCwgJ1wwJykuYmVnaW4oKSwgYmFyICogbGVuZ3RoLCBbJl0oKSB7CgkJc3RhdGljIGF1dG8gaSA9IDBVOwoJCXJldHVybiBtdWx0aXBsaWNhbmRbaSsrICUgbGVuZ3RoXTsKCX0pIC0gYmFyICogbGVuZ3RoKTsKCgljb3V0IDw8IGZvbzsKfQ==
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,