Problem1230--大小写转换

1230: 大小写转换

[Creator : ]
Time Limit : 1000.000 sec  Memory Limit : 65536 MB

Description

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

Input

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

Output

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

Sample Input Copy

Hello
ICPC2004
12345abcde
End of file

Sample Output Copy

HELLO
ICPC2004
12345ABCDE

Source/Category