fork download
  1. /************************\
  2. |* In the name of God *|
  3. |* Code 3. 3. Irysc.com *|
  4. |* IROI.rozblog.com *|
  5. \************************/
  6.  
  7. #include <iostream>
  8.  
  9. using namespace std;
  10.  
  11. int main() {
  12. int a, b;
  13. cout << "Enter two numbers: ";
  14. cin >> a >> b;
  15. int c = a + b;
  16. cout << a << " + " << b << " = " << c;
  17. }
Success #stdin #stdout 0s 3300KB
stdin
5
10
stdout
Enter two numbers: 5 + 10 = 15