2548029 2548029 01-12-2022 Computers and Technology contestada What is the output of this program? Assume the user enters 3, 6, and 11. numA = 0 for count in range(3): answer = input ("Enter a number: ") fltAnswer = float(answer) numA = numA + fltAnswer print (numA) Output: