#include <string>
#include <iostream>
using namespace std;
int main() {
	string S;
	cin >> S;
	for(char c : S) {
		cout << (c <= 'Z' ? c : c - 'a' + 'A');
	}
	cout << endl;
	return 0;
}