# how many times is hello printed?
# import module os.
import os

for j in range(4):
	os.fork()
	print "hello"

#####################################################################
