Problem1125--字符串---小写转大写

1125: 字符串---小写转大写

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 826  Solved: 542
[Status] [Submit] [Creator:]

Description

输入一个字符串,将其中的小写字母更改成大写字母,把更改后的字符串输出来。

Input

一行字符串(长度不超过100),不包含空格

Output

将字符串中的小写字母转换成大写字母其他字符不改变

Sample Input Copy

ab4#A

Sample Output Copy

AB4#A

Source/Category

 基础C