fork download
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int a, b;
  6. cout << "Enter two integers:";
  7. cin >> a >> b;
  8. cout << "Sum: " << a + b;
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Enter two integers:Sum: 1196332991