Write a function that takes two numbers as arguments and returns their sum.
Then, print the result in a formatted string.
"""Sum between two numbers""" def Sum(a,b): return a+b print(10,'+',25,'=',Sum(10,25))