costinland.cpp: In function 'int main()':
costinland.cpp:32:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
32 | for(int i=0; i<k-1; i++) cout << 'X'; cout << "d\n";
| ^~~
costinland.cpp:32:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
32 | for(int i=0; i<k-1; i++) cout << 'X'; cout << "d\n";
| ^~~~
costinland.cpp:33:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
33 | for(int i=0; i<k-1; i++) cout << 'r'; cout << ".";
| ^~~
costinland.cpp:33:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
33 | for(int i=0; i<k-1; i++) cout << 'r'; cout << ".";
| ^~~~