fork download
  1. #include <cstdio>
  2. #include <algorithm>
  3.  
  4. int main(void) {
  5. char s[20];
  6. std::gets(s); //Helloworld
  7. std::gets(s+2);//dog
  8. std::sort(s+1,s+7);
  9. std::puts(s+4);
  10. }
Success #stdin #stdout 0s 3472KB
stdin
Helloworld
dog
stdout
goorld