Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Prepared by Geri Gokaj.
Number Pattern
Write a program to show the numbers from 1 to N*N in a table with N*N size. The numbers will be displayed in ascending order starting from first column of the matrix. Then it will continue from the top of the next column.
Input specification
The number N. (1<=N<=50)
Output specification
The required pattern with N*N size. There will be space in between the numbers.
Sample Input I
3
|
Sample Input II
5
|
Sample Output I
1 4 7
2 5 8
3 6 9
|
Sample Output II
1 6 11 16 21
2 7 12 17 22
3 8 13 18 23
4 9 14 19 24
5 10 15 20 25
|
Для отправки решений необходимо выполнить вход.
|