S=input() ANS="" for s in S: if ord(s)>96: ANS+=s.upper() else: ANS+=s.lower() print(ANS)