Drop links or images here to add them to the editor.

Fill and Display ⭐

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:

Input

Exactly 5 integers, one per line.

Output

Print the 5 numbers, one per line.

Example

Input:

3
7
1
9
5

Output:

3
7
1
9
5