boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:15:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
15 | for (int i = 1; i <= N; i++) cout << cwtour[i] << ' '; cerr << endl;
| ^~~
boxes.cpp:15:58: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
15 | for (int i = 1; i <= N; i++) cout << cwtour[i] << ' '; cerr << endl;
| ^~~~
boxes.cpp:16:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
16 | for (int i = 1; i <= N; i++) cout << cwwtour[i] << ' '; cerr << endl;
| ^~~
boxes.cpp:16:59: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
16 | for (int i = 1; i <= N; i++) cout << cwwtour[i] << ' '; cerr << endl;
| ^~~~
boxes.cpp:7:16: warning: variable 'h' set but not used [-Wunused-but-set-variable]
7 | int dis = 0, h;
| ^