burrow.cpp:1:2: error: stray '#' in program
1 | a#include <bits/stdc++.h>
| ^
burrow.cpp:1:1: error: 'a' does not name a type
1 | a#include <bits/stdc++.h>
| ^
burrow.cpp: In function 'int main()':
burrow.cpp:11:5: error: 'ios' has not been declared
11 | ios::sync_with_stdio(false);
| ^~~
burrow.cpp:12:5: error: 'cin' was not declared in this scope
12 | cin.tie(nullptr);
| ^~~
burrow.cpp:15:12: error: 'vector' was not declared in this scope
15 | vector<vector<int>> a(n, vector<int>(m));
| ^~~~~~
burrow.cpp:15:19: error: expected primary-expression before 'int'
15 | vector<vector<int>> a(n, vector<int>(m));
| ^~~
burrow.cpp:18:20: error: 'a' was not declared in this scope
18 | cin >> a[i][j];
| ^
burrow.cpp:24:23: error: expected primary-expression before 'int'
24 | vector<vector<int>> b(n, vector<int>(m));
| ^~~
burrow.cpp:27:17: error: 'b' was not declared in this scope
27 | b[i][j] = (a[i][j] >= tm);
| ^
burrow.cpp:27:28: error: 'a' was not declared in this scope
27 | b[i][j] = (a[i][j] >= tm);
| ^
burrow.cpp:30:23: error: expected primary-expression before 'int'
30 | vector<vector<int>> p(n, vector<int>(m + 1));
| ^~~
burrow.cpp:33:17: error: 'p' was not declared in this scope
33 | p[i][j + 1] = p[i][j] + b[i][j];
| ^
burrow.cpp:33:41: error: 'b' was not declared in this scope
33 | p[i][j + 1] = p[i][j] + b[i][j];
| ^
burrow.cpp:41:25: error: 'p' was not declared in this scope
41 | if (p[i][j + s] - p[i][j] == s) {
| ^
burrow.cpp:46:26: error: 'max' was not declared in this scope; did you mean 'mx'?
46 | mx = max(mx, sum);
| ^~~
| mx
burrow.cpp:59:5: error: 'cout' was not declared in this scope
59 | cout << l << ' ' << ans << '\n';
| ^~~~