from itertools import islice
f=open("pyhpd.txt")
for a in islice(f,2,6):
print(a)