bomb.cpp: In function 'int main()':
bomb.cpp:22:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
22 | if(cnt>0) hor=min(hor, cnt); cnt=0;
| ^~
bomb.cpp:22:34: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
22 | if(cnt>0) hor=min(hor, cnt); cnt=0;
| ^~~
bomb.cpp:33:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
33 | if(cnt>0) ver=min(ver, cnt); cnt=0;
| ^~
bomb.cpp:33:34: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
33 | if(cnt>0) ver=min(ver, cnt); cnt=0;
| ^~~