#include<bits/stdc++.h>
using namespace std;
string s;
int main(){
getline(cin,s);
int p=0;
transform(s.begin(),s.end(),s.begin(),::toupper);//全转为大写方便
cout<<s[p];
while(true){
p=s.find(" ",p+1);
if(p==-1) break;
cout<<s[p+1];
}
return 0;
}

京公网安备 11010502036488号