#include <iostream>
#include <string>
#include <cctype>
using namespace std;

int main()
{
	string word;
	cin>>word;
	word[0]=toupper(word[0]);
	cout<<word<<endl;
}

  

 posted on 2019-11-06 10:19  ComMario  阅读(78)  评论(0编辑  收藏  举报