def adder(a):
    def annon(b):
        return a+b
    return annon

addtwo = adder(2)
