def add(a, b):
    return a + b

addtwo = lambda b: add(2, b)
print(addtwo(40)) # -> 42
