Respuesta :
total = 0
count = 0
while total<=100:
total += int(input("Enter a number: "))
count += 1
print("Sum:",total)
print("Numbers Entered:",count)
I wrote my code in python 3.8. I hope this helps
Answer:
total = 0
count = 0
while total<=100:
total += int(input("Enter a number: "))
count += 1
print("Sum:",total)
print("Numbers Entered:",count)
Explanation: