5 lines
92 B
Python
5 lines
92 B
Python
titre = input()
|
|
longTitre = len(titre)
|
|
|
|
for loop in range(longTitre):
|
|
print(titre[loop]) |