fork download
  1. #include <string>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. string a = "Hello world!";
  9. int x;
  10. std:cin>>x;
  11. a.replace(0, 1, std::to_string(x));
  12. cout << a;
  13. }
Success #stdin #stdout 0s 3460KB
stdin
123
stdout
123ello world!