#T815. 将字符串中的小写字母转换成大写字母
将字符串中的小写字母转换成大写字母
Description
Given a string, convert all lowercase letters in it to uppercase letters.
Input Format
Input one line containing a string (length not exceeding 100, may contain spaces).
Output Format
Output the converted string.
```input1 helloworld123Ha```output1
HELLOWORLD123HA
源码
CodesOnline