Given a list of numbers, you want to take out all of the odd ones and leave just the even ones.
Evaluate each number in your list to see if it is even or odd. Then, output a new list that only contains the even numbers from your original list.
A string that includes all of the integer values in your list separated by spaces.
A string that includes all of the even integer values from your first list separated by spaces.
8 10 19 25 5 16 12
8 10 16 12
Your new list would only contain the even numbers (8, 10, 16, and 12) and would not include the odd ones (19, 25, and 5). Note, that both, input and output, are strings.