#include using namespace std; void fast_io() { ios::sync_with_stdio(false); std::cin.tie(nullptr); } int main() { fast_io(); for (int i = 0; i < 3; i++) { string s; cin >> s; cout << (char)toupper(s[0]); } cout << endl; }