fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5. string s;
  6. cin >> s;
  7. for(int i = 1; i < s.size(); i += 2)
  8. s.insert(i,"#");
  9. cout << s;
  10. }
Success #stdin #stdout 0s 5440KB
stdin
ddfjcfjncvfjfc
stdout
d#d#f#j#c#f#j#n#c#v#f#j#f#c