#include<iostream> #include <cstring> using namespace std; int main(){ char a[101]; char b[101]; cin >> a; strupr(a); cout << a; return 0; }