#!/usr/bin/python concat = '
' thisline = "" import sys for line in sys.stdin: thisline = line.expandtabs(7) thisline = thisline.replace("&", "&").replace("<","<").replace(">",">") thisline = thisline.replace("\n", "
") thisline = thisline.replace(" "," ") concat = concat + thisline # + "
" print concat + "
"