#include<stdio.h>
#include<ctype.h>
#include<string.h>
char a[101];
int main()
{
int i,j;
while(gets(a)!=NULL) //除第一个字母外,都要前为空格后不为空格
{ j=0;
for(i=0;i<strlen(a);i++)
if(j)
{
if(a[i]==' ') j=0;
}
else {
if(a[j]!=' ')//只对第一个字母的变化起作用
{
j=1;a[i]=a[i]-32; //变大写
}
}
printf("%s\n",a);
}
return 0;
}