python/ecriture_en_miroir.py
2023-01-03 22:40:38 +01:00

5 lines
99 B
Python

nbLignes = int(input())
for idLigne in range(nbLignes):
texte = input()
print(texte[::-1])