#include <iostream>
#include <string>
int main(int argc, char** argv)
{
std::string hi[] = { "hi", "cool", "what" };
for (const std::string& s : hi) {
std::cout << s << std::endl;
}
return 0;
}
I2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8c3RyaW5nPgoKaW50IG1haW4oaW50IGFyZ2MsIGNoYXIqKiBhcmd2KQp7CiAgICBzdGQ6OnN0cmluZyBoaVtdID0geyAiaGkiLCAiY29vbCIsICJ3aGF0IiB9OwoKICAgIGZvciAoY29uc3Qgc3RkOjpzdHJpbmcmIHMgOiBoaSkgewogICAgICAgIHN0ZDo6Y291dCA8PCBzIDw8IHN0ZDo6ZW5kbDsKICAgIH0KCiAgICByZXR1cm4gMDsKfQo=