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