fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5.  
  6. int main() {
  7. int liczba;
  8. string tekst;
  9. cin >> liczba >> tekst;
  10. cout << liczba << tekst;
  11. }
Success #stdin #stdout 0s 3432KB
stdin
1
tekst
stdout
1tekst