fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int i = 123;
  8.  
  9. cout << i << endl;
  10.  
  11. i = 2 + 3;
  12.  
  13. cout << i << endl;
  14.  
  15. cout << "I am now done." << endl;
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0.02s 2680KB
stdin
Standard input is empty
stdout
123
5
I am now done.