def main(): import sys input = sys.stdin.readline S = input().rstrip('\n') print(' '.join(S)) if __name__ == '__main__': main()