#include <cctype>
 
#include <iostream>
#include <algorithm>
#include <string>
 
int main() {
    
        using namespace std;
        
        string str = "HELLO WORLD";

        transform( str.begin(), str.end(), str.begin(), ::tolower );
    
        cout << str << endl;
}