#include <iostream>

using namespace std;

int main(void)
{
    char c;
	while(cin.get(c) && c != '\n')
	{
		if(c >= 'a' && c <= 'z')
			c += 'A' - 'a';
		cout << c;
	}
	cout << endl;

	return 0;
}