[Python] Python approach?[Python] Python approach?
🧑🚀
A Human Message
Week 4, 2026
//Paste your solution here if you want to share it publicly
message = input()
n = len(message) // 8
for i in range(n):
a = message[i * 8 : (i + 1) * 8]
b = int(a, 2)
print(chr(b), end="")