Coasters by croyal

s=raw_input()
print' '+('_'*(len(s)+2))+'\n'+'/ '+(' '*len(s))+' \\\n'+(('| '+(' '*len(s))+' |\n')*(len(s)/6+1))+'| '+s+' |\n'+(('| '+(' '*len(s))+' |\n')*(len(s)/6+1))+'\\_'+('_'*len(s))+'_/'

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page