Write a function called AddAndPrintNumbers. This function w…
Write a function called AddAndPrintNumbers. This function will take a variable length list of integers as function parameter. Your job is to write a few lines of code to read the incoming parameters and then add all the numbers and then print the sum. Also, (No hardcoding). your function needs to accept any length of supplied parameters and add all the integers. Test with these two lists 1) a = AddAndPrintNumbers(1,2,3,4,5,6,7) print(a) should result in 28 2) b = 5,10,15 print(b) should result in 30 You need to submit two things with this question a) your code and b) screen shots of your running program