def somma_moltiplicazione_somma(a, b):
    x = a+b
    y = a*b
    return x+y

a = 5
b = 10
# Invertite il contenuto delle variabili

# QUI SOTTO LA VOSTRA ESECUZIONE
c = a
a = b
b = c 

# RISULTATO
print("a: ", a)
print("b: ", b)
# Deve uscire fuori: a: 10
#                    b: 5
