Program: Write a program that reads ten numbers from input and prints them in reverse order.
We suppose that the data consists of integers. The program should conform to the subsequent format:
Enter ten numbers: 8 2 34 99 17 3 25 12 -4 44
The reverse sequence is: 44 -4 12 25 3 17 99 34 2 8
hint: use an array to store the numbers.