← Back to List

18245번: 이상한 나라의 암호 ↗

Solutions

Python 3
109 B | 109 chars
t = 2
while True:
    a = input()
    if a == "Was it a cat I saw?":
        break
    print(a[::t])
    t+=1