Home => ProblemSet => 1.7-13:将字符串中的小写字母转换成大写字母
Problem1135--1.7-13:将字符串中的小写字母转换成大写字母

1135: 1.7-13:将字符串中的小写字母转换成大写字母

Time Limit: 1 Sec  Memory Limit: 128 MB  Submit: 0  Solved: 2
[ Submit ] [ Status ] [ Creator: ][ 参考程序 ]

Description

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

Input

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

Output

输出转换后的字符串。

Sample Input Copy

helloworld123Ha

Sample Output Copy

HELLOWORLD123HA

Source/Category