Answer:
total = 0
count = 0
while total<=100:
total += int(input("Enter a number: "))
count += 1
print("Sum:",total)
print("Numbers Entered:",count)
Step-by-step explanation:
I wrote my code in python 3.8. I hope this helps
5.7m questions
7.4m answers