fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6.  
  7. int i = 10;
  8.  
  9. int j = 25;
  10.  
  11. int k=i+j;
  12.  
  13. cout<<k;
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
35