Main.cpp: In function 'int main()':
Main.cpp:29:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
29 | for(int i = 0; i < n; i++) cout << pref[i] << ' '; cout << '\n';
| ^~~
Main.cpp:29:56: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
29 | for(int i = 0; i < n; i++) cout << pref[i] << ' '; cout << '\n';
| ^~~~
Main.cpp:30:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
30 | for(int i = 0; i < n; i++) cout << suff[i] << ' '; cout << "\n\n";
| ^~~
Main.cpp:30:56: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
30 | for(int i = 0; i < n; i++) cout << suff[i] << ' '; cout << "\n\n";
| ^~~~