7 lines
120 B
Python
7 lines
120 B
Python
str = input()
|
|
new = ""
|
|
while len(str)>10 :
|
|
new = new + str[:10] + "\n"
|
|
str = str[10:]
|
|
new = new + str
|
|
print(new) |