fork download
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. string ime,prezime;
  7. cin>>ime;
  8. cin>>prezime;
  9. cout<<prezime << ime<<endl;
  10. system ("PAUSE");
  11. return 0;
  12. }
  13.  
Success #stdin #stdout #stderr 0.01s 5320KB
stdin
Petar 
Stojanovski
stdout
StojanovskiPetar
stderr
sh: 1: PAUSE: not found