fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. // your code goes here
  5. std::string id = "I'm an ID";
  6. std::string result = std::string(8, '0').append(id.c_str());
  7. return 0;
  8. }
Success #stdin #stdout 0s 4512KB
stdin
Standard input is empty
stdout
Standard output is empty