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