mirror of
https://gitlab.com/80486DX2-66/gists
synced 2024-11-14 20:35:54 +05:30
9 lines
153 B
Python
9 lines
153 B
Python
#!/usr/bin/python3
|
|
|
|
# base64_text_decode.py
|
|
#
|
|
# Author: Intel A80486DX2-66
|
|
# License: Unlicense
|
|
|
|
print(__import__("base64").b64decode(input()).decode())
|