/in/foo.cc: In function 'int main()':
/in/foo.cc:17:2: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
17 | else
| ^~~~
/in/foo.cc:19:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'else'
19 | if(month==4||month==6||month==9||month==11)
| ^~
/in/foo.cc:21:9: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
21 | else
| ^~~~
/in/foo.cc:26:17: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'else'
26 | cout<<day<<endl;
| ^~~~