본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]11365번 !밀비 급일

by 현장 2021. 11. 18.

-코드

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