import sys, re from util import * print('...') title = True for block in blocks(sys.stdin): block = re.sub(r'\*(.+?)\*', r'\1', block) if title: print('

') print(block) print('

') title = False else: print('

') print(block) print('

') print('')