5 lines
99 B
Python
5 lines
99 B
Python
nbLignes = int(input())
|
|
|
|
for idLigne in range(nbLignes):
|
|
texte = input()
|
|
print(texte[::-1]) |