#include<iostream>
#include<string>
#include <algorithm>


int main() {

   std::string s;
   std::cout<<"enter a string: ";

   getline(std::cin,s);

   std::transform(s.begin(), s.end(), s.begin(), toupper);

   std::cout << s.c_str() << std::endl;

   return 0;
}
