fork download
  1. #include <stdio.h>
  2. int main() {
  3. for(int i = 3; i <= 15; i++) {
  4. printf("%d\n", i);
  5. }
  6. return 0;
  7. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
3
4
5
6
7
8
9
10
11
12
13
14
15