Write a program that reads a list of integers into a list as long as the integers are greater than zero, then outputs the values of the listEx: If the input is: 10 5 3 21 2 -6 the output is: 2 21 You can assume that the list of integers will have at least 2 values.

1 user_numbers = [ ]
2
3
4