1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2025-04-08 15:59:05 +05:30
gists/python-programming/base64_text_decode.py

10 lines
244 B
Python

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