Files
CodeObject/storage/zeta/py/completed/11365.py

7 lines
90 B
Python

while True:
i = input()
if i == 'END':
break
i = i[::-1]
print(i)