The function below returns the sum of the two variables n1 and n2. Write a function CALL that displays the return value on the screen

def sum(n1, n2):
n = n1+n2
return n