itshard532 itshard532 04-11-2020 Computers and Technology contestada Question # 6 Math Formula What is the output of this program? Assume the user enters 2, 5, 1, and 6. numA = 0 for count in range(4): answer = input ("Enter a number: ") fltAnswer = float(answer) numA = numA + fltAnswer print (numA) Output: