← Back to List
10935번: BASE64 인코딩 ↗
Solutions
Python 3
73 B | 73 chars
from base64 import * print(str(b64encode(input().encode('utf-8')))[2:-1])