Function in Python

CODE:

def add(a,b):
    sum=a+b
    return (sum)
x=add(3,5)
print(x)

OUTPUT:

8
    

Comments