stones.cpp: In function 'void solve()':
stones.cpp:49:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
49 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~
stones.cpp:49:58: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
49 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~~
stones.cpp:50:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
50 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~
stones.cpp:50:58: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
50 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~~
stones.cpp:68:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
68 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~
stones.cpp:68:58: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
68 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~~
stones.cpp:89:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
89 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~
stones.cpp:89:58: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
89 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~~
stones.cpp:90:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
90 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~
stones.cpp:90:58: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
90 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~~
stones.cpp:107:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
107 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~
stones.cpp:107:58: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
107 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~~
stones.cpp:43:9: warning: unused variable 'mn' [-Wunused-variable]
43 | int mn = m + n;
| ^~