def chamar_ab():
    a = 1
    b = 2
    return a, b

def soma(x, y):
    return x + y

print(soma(*chamar_ab()))

#https://pt.stackoverflow.com/q/392570/101