Read exactly 5 integers (one per line). Store them in an array and then display them in the same order in which they were entered.
To solve the exercise:
Exactly 5 integers, one per line.
Print the 5 numbers, one per line.
Input:
3
7
1
9
5
Output:
3
7
1
9
5