# Welcome to softhunt.net def adder(*num): sum = 0 for n in num: sum = sum + n print("Sum:",sum) adder(5,8) adder(6,7,8,9) adder(11,12,13,14,15)