import sys

# Write the bytes of my username, followed by 3 garbage bytes to fill the 
# "name" buffer of size 10, then the bytes of "A+"
sys.stdout.buffer.write(bytes("opsulli", "utf-8") + b"\x00" * 3 + bytes("A+", "utf-8"))