← Back to List
10941번: BASE16 디코딩 ↗
Solutions
Python 3
73 B | 73 chars
import base64 print(str(base64.b16decode(input().encode('utf-8')))[2:-1])