#include <iostream>
#include <algorithm>
#include <string>
 
int main() {
    
        using namespace std;
        
        string str = "HELLO WORLD";
 
        transform( str.begin(), str.end(), str.begin(), std::tolower<string::value_type> );
 
        cout << str << endl;
}