stones.cpp: In function 'void solve()':
stones.cpp:60:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
60 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~
stones.cpp:60:58: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
60 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~~
stones.cpp:61:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
61 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~
stones.cpp:61:58: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
61 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~~
stones.cpp:80:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
80 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~
stones.cpp:80:58: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
80 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~~
stones.cpp:101:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
101 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~
stones.cpp:101:58: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
101 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~~
stones.cpp:102:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
102 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~
stones.cpp:102:58: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
102 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~~
stones.cpp:116:17: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
116 | for (int i = 0; i < m; i++) cout << '-'; cout << endl;
| ^~~
stones.cpp:116:58: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
116 | 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;
| ^~