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

if(os.fork()):
	os.fork()
	print "hello"

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