def f1():
    x = 1/0
    
try: 
    f1()
except ZeroDivisionError:
    print 'ZeroDivisionError handled'
    raise

print 'hello world'