← Back to List

10936번: BASE64 디코딩 ↗

Solutions

Python 3
83 B | 83 chars
import base64
a=input().encode('utf-8')
b=str(base64.decodebytes(a))
print(b[2:-1])