fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. auto i = 10;
  5. while (i++ < 20) std::cout << i << "\n";
  6. }
Success #stdin #stdout 0s 4556KB
stdin
Standard input is empty
stdout
11
12
13
14
15
16
17
18
19
20