1246: 大小写转换

Memory Limit:65536 MB Time Limit:1000.000 S
Judge Style:Text Compare Creator:
Submit:9 Solved:4

Description

读入一些字符串,将其中的小写字母转成大写字母(其他字符不变)。

Input

输入为多行,每行为一个字符串,字符串只由字母和数字组成,长度不超过80。输入以“End of file”结束。

Output

对于每行输入,输出转换后的字符串。

Sample Input Copy

Hello
ICPC2004
12345abcde

Sample Output Copy

HELLO
ICPC2004
12345ABCDE