#include

#include

#include // for toupper

using namespace std;

int main() {

string s;

cin >> s;

for (char &c : s) {

    if (c >= 'a' && c <= 'z') {
    
        c = toupper(c);
        
    }
    
}

cout << s << endl;

return 0;

}

0 comments

No comments so far...