Discover a wealth of knowledge at Westonci.ca, where experts provide answers to your most pressing questions. Our Q&A platform provides quick and trustworthy answers to your questions from experienced professionals in different areas of expertise. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.

Basic python coding, What is the output of this program? Assume the user enters 2, 5, and 10.
numA = 0
for count in range(3):
answer = input ("Enter a number: ")
fltAnswer = float(answer)
numA = numA + fltAnswer
print (numA)
Thanks in advance!
:L