mirror of
https://github.com/SplatooD/splatood.git
synced 2026-03-21 17:34:25 -05:00
10 lines
142 B
Python
10 lines
142 B
Python
import codecs
|
|
|
|
out = []
|
|
for i in codecs.encode(raw_input()):
|
|
out.append(hex(ord(i)+0x80))
|
|
|
|
out.append("0x00");
|
|
|
|
print "{",",".join(out),"};"
|