0_0_39197808_30422.cpp: In function 'void solve()':
0_0_39197808_30422.cpp:6:16: error: invalid types 'int[int]' for array subscript
6 | int sum[102[102];
| ^
0_0_39197808_30422.cpp:6:21: error: expected ']' before ';' token
6 | int sum[102[102];
| ^
| ]
0_0_39197808_30422.cpp:10:26: error: 'sum' was not declared in this scope
10 | scanf("%d", &sum[i][j]);
| ^~~
0_0_39197808_30422.cpp:15:17: error: 'sum' was not declared in this scope
15 | if (sum[i][j] <= sum[i][j + 1]) sum[i - 1][j] += sum[i][j + 1];
| ^~~
0_0_39197808_30422.cpp:20:20: error: 'sum' was not declared in this scope
20 | printf("%d\n", sum[1][1]);
| ^~~
|