Final answer:
To add up a series of numbers until the input is 10, use a while loop and continuously add the numbers until 10 is reached.
Step-by-step explanation:
To add up a series of numbers until the input is 10, we can use a while loop. First, we initialize a variable called 'total' as 0. Then, we take input from the user and add it to the total until the input is equal to 10. Finally, we print the total.
Here's an example:
total = 0
while True:
num = int(input('Enter a number: '))
if num == 10:
break
total += num
print('The total is:', total)
For the given example of input numbers 8, 3, 11, 10, the output would be 22.