def sum(a,b): total = a+b print("Inside The function:",total) return total; total = sum(10,5); print("Outside the fun",total)