// editor1
#include<iostream>
#include<cctype>
using namespace std;
int main()
{
    string n;
    cin>>n;
    if(islower(n))
    {
       cout<<string toupper(n);
    }
    else
    {
        cout<<"Invalid input";
    }
}