#include <bits/stdc++.h>
using namespace std;

bool isBlank(char c){
    if(c == ' ' || c == '\t' || c == '\r' || c == '\n')return 1;
    return 0;
}

int main() {
    string s;
    while(getline(cin,s)){
        for(int i =0;i<s.length();i++){
            if(islower(s[i])){
                if(i == 0 || isBlank(s[i-1]))
                    s[i] -= 'a'-'A';
            }
        }
        cout<<s<<endl;
    }
}
// 64 位输出请用 printf("%lld")