# how many times is the word hello printed?

# import module os.
import os

# fork!
ret1 = os.fork()
print "hello"
if ret1:
  print "hello"
ret2 = os.fork()
print "hello"

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