def calculateTotalSum(*args): totalSum = 0 for number in args: totalSum += number print(totalSum) calculateTotalSum(15, 3, 7, 89, 2)