This commit is contained in:
2023-06-23 23:40:06 +02:00
parent cafd55a3c8
commit 299c66d872

3
pokechat.py Normal file
View File

@@ -0,0 +1,3 @@
s = input()
m = input().strip()
print("".join([s[int(m[i * 3 : i * 3 + 3]) - 1] for i in range(len(m) // 3)]))