1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-15 05:45:55 +05:30
gists/python-programming/oneliners/base64_text_decode.py

9 lines
179 B
Python

#!/usr/bin/python3
# base64_text_decode.py
#
# Author: Intel A80486DX2-66
# License: Creative Commons Zero 1.0 Universal
print(__import__("base64").b64decode(input()).decode())