def multiply(a,b):
    print "Python: Will compute", a, "times", b
    c = 0
    for i in range(0, a):
        c = c + b
    return c
