fork(1) download
  1. #include <iostream>
  2.  
  3. int main() {
  4. std::string imie;
  5.  
  6. std::cout << "Podaj imie: ";
  7. std::cin >> imie;
  8. std::cout << std::string(imie.rbegin(), imie.rend()) << std::endl;
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 3232KB
stdin
jakubs
stdout
Podaj imie: sbukaj