Respuesta :

Answer:

Explanation

Using the Python 3 syntax in writing the code.

First we will define a function 'add_numbers', parse in the variables x and y and return its sum as shown.

Then we carry out the addition of 5 and 7.

def sum_numbers(x, y):

return x+y

sum_numbers(5, 7)