Let's try to reverse a numeric sequence. Read it from the input and print its numbers in reverse order separated by spaces.
You can use slicing
list[::-1] or the method list.reverse() to invert the order. Notice that the numbers themselves should remain unchanged, for example, 23 is not the same as 32.