fork download
  1. #include <iostream>
  2. int main() {
  3. int firstNumber { };
  4. int secondNumber { };
  5.  
  6. std::cout << "Enter two numbers separated by space: ";
  7. std::cin >> firstNumber >> secondNumber;
  8.  
  9. std::cout << "The sum of both the numbers are: " << firstNumber + secondNumber << std::endl;
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5288KB
stdin
100 200
stdout
Enter two numbers separated by space: The sum of both the numbers are: 300