#!/usr/bin/python -u

import time

file = open("dl.output")

while True:
    line = file.readline()
    if not line:
        break
    else:
    	print line,
    	time.sleep(1)