Meniu

#2200 Uppercase

#include <iostream>
using namespace std;
int main(){
 char n;
 cin>>n;
 cout<<char(toupper(n));
 return 0;
}