fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main ()
  6. {
  7. int Variable_1;
  8. int Variable_2;
  9. int Variable_3;
  10.  
  11. cout << "78: ";
  12. cin >> Variable_1;
  13.  
  14. cout << "79: ";
  15. cin >> Variable_2;
  16.  
  17. Variable_3 = Variable_2 + Variable_1;
  18. cout << "Variable_3: " << Variable_3;
  19.  
  20.  
  21.  
  22.  
  23. return 0;
  24. }
Success #stdin #stdout 0s 3472KB
stdin
7
4
stdout
78: 79: Variable_3: 11