fork(4) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int p1;
  6. cout << "Person 1:";
  7. cin >> p1;
  8. cout << "You entered:" << p1;
  9. return 0;
  10. }
Success #stdin #stdout 0s 15240KB
stdin
12345
stdout
Person 1:You entered:12345