Read n x n matrix. Print first row left-to-right, last column top-to-bottom, last row right-to-left, first column bottom-to-top.
Write a complete program: read the input with input() and print the result with print().
Input
3
1 2 3
4 5 6
7 8 9
Output
1 2 3 6 9 8 7 4