import sys def my_slice(_str: str): if len(_str) <= 8: return [_str.ljust(8, "0")] return [_str[:8], *my_slice(_str[8:])] userInput = input() if len(userInput) > 0: for i in my_slice(userInput): print(i)