https://www.acmicpc.net/problem/27903
굉장히 흥미로운 문제이다. 내 아이디가 babnbabn이어서 print를 쓰진 못했다. 하지만, 간단하다. 힌트만 확인 한다면 풀 수 있다.
from sys import stdout
d = [98, 97, 98, 110, 98, 97, 98, 110]
stdout.write(chr(d[0]))
stdout.write(chr(d[1]))
stdout.write(chr(d[2]))
stdout.write(chr(d[3]))
stdout.write(chr(d[4]))
stdout.write(chr(d[5]))
stdout.write(chr(d[6]))
stdout.write(chr(d[7]))