#45653: 不想打註解


1121226@stu.wghs.tp.edu.tw (Arthur✨EC)


#include<bits/stdc++.h>
using namespace std;
int main(){
    string s;
    while(cin>>s){
        cout<<(char)toupper(s[0])<<s.substr(1)<<endl;
    }
}