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