integers are read from input and stored into a vector until -1 is read. output the negative elements in the vector in reverse order. end each number with a newline. ex: if the input is 10 -12 -3 3 -1, the output is: -3 -12 note: negative numbers are less than 0.