Given a series of numbers as input, add them up until the input is 10 and print the total. Do not add the final 10. For example, if the following numbers are input 8 3 11 10 The output should be: 22 Hint: When you don't know the number of repetitions, always use while loop.