2211: 大小写转换

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:263 Solved:131

Description

把一个字符串里所有的大写字母换成小写字母,小写字母换成大写字母。其他字符保持不变。

Input

输入为一行字符串,长度不超过80个字符。


Output

输出转换好的字符串。


Sample Input Copy

ABCDefgh123

Sample Output Copy

abcdEFGH123

Source/Category