def main(): for c in input(): if c.islower(): print(c.upper(), end='') else: print(c.lower(), end='') print() if __name__ == '__main__': main()