← Back to List

24196번: Gömda ord ↗

Solutions

Python 3
99 B | 99 chars
s = input()
ans = ""
i = 0

while i < len(s):
    ans += s[i]

    i += ord(s[i]) - 64

print(ans)