Write a short program that asks the user how many numbers they want to store. Ask the user for each of the n numbers and store these numbers in an ArrayList. When the user is done entering the numbers, print out the numbers that they typed in earlier, in the order that they were entered. Print out the numbers the user entered, after removing any odd elements.
ORIGINAL array: 056, 188, 24, 315, 477, 5, 12, 691
AFTER REMOVAL OF ODDS from ArrayList: 14, 277, 391