Sum Between Two Numbers

Write a function that takes two numbers as arguments and returns their sum.

Then, print the result in a formatted string.

Solutions

Solution: 1

"""Sum between two numbers"""
def Sum(a,b):
    return a+b

print(10,'+',25,'=',Sum(10,25))