soccer.cpp: In function 'int biggest_stadium(int, std::vector<std::vector<int> >)':
soccer.cpp:26:30: error: expected ';' before ',' token
26 | auto [a, b] = ranges_r[i], [c, d] = ranges_r[i];
| ^
soccer.cpp:27:14: error: 'c' was not declared in this scope
27 | if (a >= c && b <= d) {
| ^
soccer.cpp:27:24: error: 'd' was not declared in this scope
27 | if (a >= c && b <= d) {
| ^
soccer.cpp:30:9: error: 'c' was not declared in this scope
30 | if (c >= a && d <= b) {
| ^
soccer.cpp:30:19: error: 'd' was not declared in this scope
30 | if (c >= a && d <= b) {
| ^
soccer.cpp:53:30: error: expected ';' before ',' token
53 | auto [a, b] = ranges_c[i], [c, d] = ranges_c[i];
| ^
soccer.cpp:54:14: error: 'c' was not declared in this scope
54 | if (a >= c && b <= d) {
| ^
soccer.cpp:54:24: error: 'd' was not declared in this scope
54 | if (a >= c && b <= d) {
| ^
soccer.cpp:57:9: error: 'c' was not declared in this scope
57 | if (c >= a && d <= b) {
| ^
soccer.cpp:57:19: error: 'd' was not declared in this scope
57 | if (c >= a && d <= b) {
| ^