#include <string>
#include <iterator>
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
string test = "TEST";
// :: global namespace for clib tolower
transform(test.begin(), test.end(), test.begin(), ::tolower);
cout << test << endl;
return 0;
}
I2luY2x1ZGUgPHN0cmluZz4KI2luY2x1ZGUgPGl0ZXJhdG9yPgojaW5jbHVkZSA8aW9zdHJlYW0+CiNpbmNsdWRlIDxhbGdvcml0aG0+CnVzaW5nIG5hbWVzcGFjZSBzdGQ7CmludCBtYWluKCkKewogICAgc3RyaW5nIHRlc3QgPSAiVEVTVCI7CgogICAgLy8gOjogZ2xvYmFsIG5hbWVzcGFjZSBmb3IgY2xpYiB0b2xvd2VyCiAgICB0cmFuc2Zvcm0odGVzdC5iZWdpbigpLCB0ZXN0LmVuZCgpLCB0ZXN0LmJlZ2luKCksIDo6dG9sb3dlcik7CgogICAgY291dCA8PCB0ZXN0IDw8IGVuZGw7CiAgICByZXR1cm4gMDsKfQ==