fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int a, b, c;
  7.  
  8. cout << "input a : ";
  9. cin >> a;
  10.  
  11. cout << "input b : ";
  12. cin >> b;
  13.  
  14. cout << "input c : ";
  15. cin >> c;
  16.  
  17. cout << a << endl;
  18. cout << b << endl;
  19. cout << c << endl;
  20.  
  21. }
Success #stdin #stdout 0.01s 5316KB
stdin
3 4 5
stdout
input a : input b : input c : 3
4
5