PROGRAMMING:Square matrix circulates right
This problem requires writing a program to move each element in the given $$n times n $$matrix to the right by $$M $$, that is, the $$0 $, $$1 $, $$cdots $$, $$n-1 $$column is transformed into the $$N-M $, $$N-M + 1 $, $$cdots $, $$n-1 $, $$0 $, $$1 $, $$cdots $, $$n-m-1 $$.
###Input format:
Enter the first line to give two positive integers $$M $$and $$n $$($$1 / Le n / Le 6 $$). Next, there are a total of $$n $$rows, each row of $$n $$integers, representing a square matrix of $$n $$order.
###Output format:
Output the moving matrix according to the input format: output $$n $$rows, each row of $$n $$integers, and output a space after each integer.
###Input example:
```in
2 3
1 2 3
4 5 6
7 8 9
```
###Output example:
```out
2 3 1
5 6 4
8 9 7
```
answer:If there is no answer, please comment
###Input format:
Enter the first line to give two positive integers $$M $$and $$n $$($$1 / Le n / Le 6 $$). Next, there are a total of $$n $$rows, each row of $$n $$integers, representing a square matrix of $$n $$order.
###Output format:
Output the moving matrix according to the input format: output $$n $$rows, each row of $$n $$integers, and output a space after each integer.
###Input example:
```in
2 3
1 2 3
4 5 6
7 8 9
```
###Output example:
```out
2 3 1
5 6 4
8 9 7
```
answer:If there is no answer, please comment