1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2025-01-10 17:32:05 +05:30
gists/python-programming/oneliners/base64_text_decode.py

9 lines
153 B
Python
Raw Normal View History

2024-02-10 15:22:46 +03:00
#!/usr/bin/python3
# base64_text_decode.py
#
# Author: Intel A80486DX2-66
2024-04-25 23:16:39 +03:00
# License: Unlicense
2024-02-10 15:22:46 +03:00
print(__import__("base64").b64decode(input()).decode())