Competitions
Linear arrays
Print array
Array of n integers is given. Print all its elements in column, do not change their initial order.
Input
First line contains number n (1 ≤ n ≤ 100). Second line contains n integers, each no more than 100 by absolute value.
Output
Print each element of array in separate line.
Input example #1
4 5 0 -7 2
Output example #1
5 0 -7 2