I am trying to make a simple function that accepts 2 parameters, and adds them together using "+".
def do_plus (a,b):
    a=3
    b=7
    result = a + b
    print (result)
However, I get no value returned, the function is executed but no output is shown.
 
     
     
     
    