#!/usr/bin/python2.2
def divide(x,y):
    return x/y
def calc(x,y):
    return x*(divide(x,y))
try:
    print calc("Hello",1)
except ZeroDivisionError:
    print "Your Trying to Divide by Zero"
except TypeError:
    print "not a number"
except:
    print "some other error"
