#include using namespace std; int main() { for (int i = 0; i < 3; i++) { string S; cin >> S; cout << (char) toupper(S[0]); } cout << endl; return 0; }