Read n x m matrix. Print elements in spiral order.
Write a complete program: read the input with input() and print the result with print().
input()
print()
Input
3 3 1 2 3 4 5 6 7 8 9
Output
1 2 3 6 9 8 7 4 5