fork download
  1. #include <iostream>
  2.  
  3.  
  4. int main() {
  5. int a = 5;
  6. a = a + 5;
  7. std::cout<<a<< std::endl;
  8. a += 5;
  9. std::cout<<a<< std::endl;
  10. // your code goes here
  11. return 0;
  12. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
10
15