Uppercase and lowercase - MarisaOJ: Marisa Online Judge

Uppercase and lowercase

Time limit: 1000 ms
Memory limit: 256 MB
You are given a letter $c$. If $c$ is in uppercase, print $c$ in lowercase, and vice versa. ### Input - A letter $c$. ### Output - If $c$ is in lowercase, print $c$ in uppercase, and vice versa. ### Constraints - $c$ is a letter in the alphabet, in either lowercase or uppercase. ### Example Input: ``` C ``` Output: ``` c ```