#include <cstdlib>
#include <iostream>
#include <string>
using namespace std;
int main() {
string str("hello world!");
for (auto &c : str)
c = toupper(c);
cout << str;
return 0;
}
I2luY2x1ZGUgPGNzdGRsaWI+CiNpbmNsdWRlIDxpb3N0cmVhbT4KI2luY2x1ZGUgPHN0cmluZz4KCnVzaW5nIG5hbWVzcGFjZSBzdGQ7CgppbnQgbWFpbigpIHsKICAgIHN0cmluZyBzdHIoImhlbGxvIHdvcmxkISIpOwogICAgZm9yIChhdXRvICZjIDogc3RyKQogICAgICAgIGMgPSB0b3VwcGVyKGMpOwogICAgY291dCA8PCBzdHI7CiAgICByZXR1cm4gMDsKfQ==