def somar_todos_valores(*numeros): total = 0 for numero in numeros: total += numero return total print(somar_todos_valores(1, 5, 10, 15))