Skip to content

Instantly share code, notes, and snippets.

@kcha4github
Created May 5, 2018 13:14
Show Gist options
  • Save kcha4github/17f851fac202e6e1a2fa14fd11f8587f to your computer and use it in GitHub Desktop.
Save kcha4github/17f851fac202e6e1a2fa14fd11f8587f to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
while True:
bins = input().split()
if len(bins) == 0:
break
for b in bins:
print(chr(int(b,2)), end='')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment