1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-14 20:35:54 +05:30
gists/python-programming/oneliners/base64_text_decode.py

9 lines
153 B
Python

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