1047 字母转换


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 32M

Problem types
Allowed languages
C, C++, Java, Python

Description

将字母的大小写转换一下,非字母字符原样输出。

Sample

Input

I like ACM/ICPC.
Hello World!
+-*/ are operators.

Output

i LIKE acm/icpc.
hELLO wORLD!
+-*/ ARE OPERATORS.

Comments

There are no comments at the moment.