Colab

def mul(a,b):
    total = 0
    for iiii in range(b):
        total = total + a
    return total


mul(10,20)

200
def pow(a,b):
    total = 1
    for iiii in range(b):
        #total = total * a
        total = mul(total, a)
    return total

pow(2,8)

256