stove.cpp: In function 'int main()':
stove.cpp:28:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
28 | for(int i = 0; i < n - 1; i++) cout << pos[i].second.first << ' ' << pos[i].second.second << " , cost - " << pos[i].first << '\n'; cout << '\n';
| ^~~
stove.cpp:28:137: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
28 | for(int i = 0; i < n - 1; i++) cout << pos[i].second.first << ' ' << pos[i].second.second << " , cost - " << pos[i].first << '\n'; cout << '\n';
| ^~~~
stove.cpp:37:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
37 | for(int i = 0; i < m; i++) cout << tmp[i].first.first << ' ' << tmp[i].first.second << '\n'; cout << '\n';
| ^~~
stove.cpp:37:98: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
37 | for(int i = 0; i < m; i++) cout << tmp[i].first.first << ' ' << tmp[i].first.second << '\n'; cout << '\n';
| ^~~~