지나가던 개발자

[Python] 백준 11365번(!밀비 급일) 문제 풀이 본문

PS/Python

[Python] 백준 11365번(!밀비 급일) 문제 풀이

KwonYongHyeon 2022. 12. 10. 22:24

 

while True:
    암호 = input()
    if 암호 == "END":
        break
    print(암호[::-1])
Comments