def quadruple_input(item): total = 0 for item in range(4): total += item return total print(quadruple_input(5))