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