while True: try: s = list(input().replace(" ", "")) s[::2] = sorted(s[::2]) s[1::2] = sorted(s[1::2]) for i in s: if "0" <= i <= "9" or "a" <= i <= "f" or "A" <= i &...