less than 1 minute read

문제

여기를 눌러 문제를 확인하세요.

코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import sys

IN = sys.stdin.readline

if __name__ == "__main__":
    input_str = IN().rstrip()
    result = ""

    for s in input_str:
        if s.isupper():
            result += s.lower()
        else:
            result += s.upper()

    print(result)