The program we use for the following problem is Python.
Python is one of the most commonly used programming languages with high-level and general purpose design to emphasizes the code to be able to read and significant indentation.
In python the question problem can be solve by this dynamic program,
totalsum=0
count=0
while(totalsum<=200):
num=int(input("Enter a number: "))
totalsum=totalsum+num
count=count+1
print("Total sum: {0}".format(totalsum))
print("Total number of numbers entered: {0}".format(count))
The initial variable is totalsum and count.
Then, we use looping function for totalsum is lower or equal to 200.
As long the totalsum is lower or equal to 200 the input always appear and user can input the value after that the new value is adding to totalsum and count is plus 1 to indicate number were entered.
After loop break because totalsum is greater than 200, the program will give the output of sum and count of how many number were entered.
Learn more about programming language here:
brainly.com/question/16936315
#SPJ4