import sys
input = sys.stdin.readline
words = input()
for i in range(0, len(words), 10):
print (words[i:i+10])
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 11726번 2xn 타일링 (파이썬) (0) | 2022.06.28 |
---|---|
[백준] 11723번 집합 (파이썬) (0) | 2022.06.28 |
[백준] 11720번 숫자의 합 (C/C++) (0) | 2022.06.28 |
[백준] 11719번 그대로 출력하기 2 (파이썬) (0) | 2022.06.28 |
[백준] 11718번 그대로 출력하기 (0) | 2022.06.28 |