python-algorithm
[백준] 11365
무적김두칠
2021. 1. 13. 10:34
1
2
3
4
5
|
while 1:
s=input()
if s=="END" : exit()
else:
print(s[::-1])
|
cs |
반응형