split.cpp: In function 'int main()':
split.cpp:9:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i = 0;i<n;i++)cout<<s[i];cout<<" ";
^~~
split.cpp:9:36: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(int i = 0;i<n;i++)cout<<s[i];cout<<" ";
^~~~
split.cpp:10:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i = n;i<n*2;i++) cout<<s[i];cout<<endl;
^~~
split.cpp:10:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(int i = n;i<n*2;i++) cout<<s[i];cout<<endl;
^~~~