books.cpp: In function 'long long int minimum_walk(std::vector<int>, int)':
books.cpp:33:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
33 | for(int i = 0;i+1<N;i++)cerr<<l[i]<<' ';cerr<<endl;
| ^~~
books.cpp:33:42: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
33 | for(int i = 0;i+1<N;i++)cerr<<l[i]<<' ';cerr<<endl;
| ^~~~
books.cpp:34:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
34 | for(int i = 0;i+1<N;i++)cerr<<r[i]<<' ';cerr<<endl;
| ^~~
books.cpp:34:42: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
34 | for(int i = 0;i+1<N;i++)cerr<<r[i]<<' ';cerr<<endl;
| ^~~~