Skip to content

Instantly share code, notes, and snippets.

@sakti
Created September 22, 2012 03:25
Show Gist options
  • Save sakti/3765011 to your computer and use it in GitHub Desktop.
Save sakti/3765011 to your computer and use it in GitHub Desktop.
from base64 import decodestring
data = raw_input()
while len(data) != 0:
print decodestring(data)
data = raw_input()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment