7 lines
90 B
Python
7 lines
90 B
Python
while True:
|
|
i = input()
|
|
if i == 'END':
|
|
break
|
|
i = i[::-1]
|
|
print(i)
|