Алдабергенов Руслан Даниярович, 411 SpiralDigits 3049
Абдикашева Вилена Ринатовна, 411 группа SpiralDigits 3522
t1n, m = map(int, input().split(','))t1n, m = map(int, input().split(','))
2matrix = [[0 for j in range(n)] for i in range(m)]2matrix = [[0 for j in range(n)] for i in range(m)]
3left, right = (0, n - 1)3left, right = (0, n - 1)
4top, bottom = (0, m - 1)4top, bottom = (0, m - 1)
5now = 05now = 0
6while left <= right and top <= bottom:6while left <= right and top <= bottom:
7    for i in range(left, right + 1):7    for i in range(left, right + 1):
8        matrix[top][i] = now8        matrix[top][i] = now
9        now += 19        now += 1
10        if now == 10:10        if now == 10:
11            now = 011            now = 0
12    top += 112    top += 1
13    for i in range(top, bottom + 1):13    for i in range(top, bottom + 1):
14        matrix[i][right] = now14        matrix[i][right] = now
15        now += 115        now += 1
16        if now == 10:16        if now == 10:
17            now = 017            now = 0
18    right -= 118    right -= 1
19    if top <= bottom:19    if top <= bottom:
20        for i in range(right, left - 1, -1):20        for i in range(right, left - 1, -1):
21            matrix[bottom][i] = now21            matrix[bottom][i] = now
22            now += 122            now += 1
23            if now == 10:23            if now == 10:
24                now = 024                now = 0
25        bottom -= 125        bottom -= 1
26    if left <= right:26    if left <= right:
27        for i in range(bottom, top - 1, -1):27        for i in range(bottom, top - 1, -1):
28            matrix[i][left] = now28            matrix[i][left] = now
29            now += 129            now += 1
30            if now == 10:30            if now == 10:
31                now = 031                now = 0
32        left += 132        left += 1
33for i in matrix:33for i in matrix:
34    print(' '.join(map(str, i)))34    print(' '.join(map(str, i)))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op