← Back to List

4740번: 거울, 오! 거울 ↗

Solutions

Python 3
110 B | 110 chars
while True:
    a=input()
    if a == '***':
        break
    a=list(a)
    a.reverse()
    print("".join(a))