import fileinput
import sys
import os


a= os.popen("cat /etc/hosts")
for line in a.readlines():
	print line





