fork download
  1. #include <iostream>
  2. int main()
  3. {
  4. int x;
  5. int y;
  6. int
  7. z;
  8. std::cout << "Enter the Three numbers separated by spaces ";
  9. std::cin >> x;
  10. std::cin >> y;
  11. std::cin >> z;
  12.  
  13. std::cout << "The numbers entered ny the user are: " << x << ", " << y << " and " << z;
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0.01s 5284KB
stdin
10 20 30
stdout
Enter the Three numbers separated by spaces The numbers entered ny the user are: 10, 20 and 30