fork download
  1. #include <iostream>
  2. int main() {
  3. std::cout << "Enter three numbers separated by spaces: ";
  4.  
  5. int width { };
  6. int height { };
  7. int breadth { };
  8.  
  9. std::cin >> width;
  10. std::cin >> height;
  11. std::cin >> breadth;
  12.  
  13. std::cout << "The numbers entered by the User are: " << width << ", " << height << " and " << breadth;
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5284KB
stdin
100 200 300
stdout
Enter three numbers separated by spaces: The numbers entered by the User are: 100, 200 and 300