#include #include using namespace std; int main() { string s = "abcde"; for(int k=0; k <= s.length(); k++){ string t = s; t.insert(k," XYZ "); cout << ":"<< t << ":" << endl; } }