281A

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

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

  

猜你喜欢

转载自www.cnblogs.com/ozxics/p/10656500.html