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