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