wiring.cpp: In function 'void preprnt()':
wiring.cpp:22:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=n+m;i++)
^~~
wiring.cpp:23:32: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
cout<<w[i].first<<" "; cout<<" position"<<endl;
^~~~
wiring.cpp:24:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=n+m;i++)
^~~
wiring.cpp:25:33: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
cout<<w[i].second<<" "; cout<<" color"<<endl;
^~~~
wiring.cpp:26:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=n+m;i++)
^~~
wiring.cpp:27:27: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
cout<<bn[i]<<" "; cout<<" block number"<<endl;
^~~~
wiring.cpp:28:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=n+m;i++)
^~~
wiring.cpp:29:27: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
cout<<bs[i]<<" "; cout<<" block start"<<endl;
^~~~
wiring.cpp:30:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=n+m;i++)
^~~
wiring.cpp:31:28: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
cout<<sum[i]<<" "; cout<<endl;
^~~~