/* Uppercase letters
Input
The input data contains multiple test instances. Each test instance is an English sentence of no more than 100 characters, occupying one line.
Output
Output the modified English sentence as required.
Sample Input
I like ACM
I want to get an accepted
Sample output
I like ACM
I want to get an accepted
*/
# Include <stdio. h>
# Include <ctype. h>
# Include <string. h>
Int main ()
{
Char A [110];
Int Len, I;
While (gets ()! = NULL)
{
Len = strlen ();
A [0] = toupper (A [0]); // The toupper function converts lowercase letters to uppercase letters, and the tolower function converts uppercase letters to lowercase letters.
For (I = 1; I <Len; I ++)
{
If (A [I-1] = ''& A [I]! = '')
A [I] = toupper (A [I]);
}
Puts (a); // gets outputs the characters in the storage unit in sequence starting from this address. When the first '\ 0' symbol is encountered, the output ends and the new line is automatically wrapped.
}
Return 0;
}