#include <iostream>
#include <string>
#include <algorithm>
using namespace std;

int main() {
    std::string hk = "hong konG";
    std::transform(hk.begin(), hk.end(), hk.begin(), ::toupper);
    cout << hk << endl;
	return 0;
}