Problem1138--将字符串中的小写字母转换成大写字母

1138: 将字符串中的小写字母转换成大写字母

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 5  Solved: 3
[Submit] [Status] [Web Board] [Creator:]

Description

给定一个字符串,将其中所有的小写字母转换成大写字母。

Input

输入一行,包含一个字符串(长度不超过100,可能包含空格)。

Output

输出转换后的字符串。

Sample Input Copy

helloworld123Ha

Sample Output Copy

HELLOWORLD123HA

Source/Category