fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int inPut1 = 0;
  6. int inPut2 = 0;
  7.  
  8. cout << "Enter the number of people you know: ";
  9. cin >> inPut1;
  10. cout << inPut1;
  11. cout << endl;
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 16064KB
stdin
10
stdout
Enter the number of people you know: 10