import os, sys, time
ida = os.fork()
idb = os.fork()
if (idb == 0):
    sys.exit(1)# this creates 2 zombies
else:
    time.sleep(15)
if (ida == 0):
    time.sleep(15)# this is the orphan
else:
    sys.exit(1)
