Answer:
sum = 0
count = 0
while sum < 200:
number = int(input("Enter a number: "))
sum += number
count += 1
print("\\Sum:", sum)
print("Number's Entered:", count)
Step-by-step explanation:
The while loop will keep running until the sum is greater than 200. The sum will be added to the number that the user inputs and the count will be added by 1. Once the sum is greater than 200, the program will print the sum and the count of how many numbers were entered.