1#include <bits/stdc++.h>2 3using namespace std;4 5int main() {6 char x;7 cin >> x;8 x = toupper(x);9 cout << x;10 return 0;11}