Define a function called myfunc that takes in two arguments and returns their sum. Remember, don't run the function, simply provide the definition. For example, a function that takes in two arguments and returns their product might look like: def my func(a,b): return a b This is all you need to enter! To give an idea what the above function would look like when tested: 1. my func(5,12) exercise.py 1- def my func(x,y): 2 return x*y Line 2 Column 12 All changes saved Reset code Che