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
153 B
Python
Raw Normal View History

2024-02-10 17:52:46 +05:30
#!/usr/bin/python3
# base64_text_decode.py
#
# Author: Intel A80486DX2-66
2024-04-26 01:46:39 +05:30
# License: Unlicense
2024-02-10 17:52:46 +05:30
print(__import__("base64").b64decode(input()).decode())