#include #include #include using namespace std; int main(int argc, char** argv) { string S; cin >> S; transform(S.begin(), S.end(), S.begin(), ::toupper); cout << S << endl; return 0; }