fork download
  1. <?php
  2.  
  3. $X = trim(fgets(STDIN));
  4.  
  5. for
  6. ($y = 1; $y <= $X; $y++) {
  7. echo $y."\n";}
  8.  
  9. ?>
Success #stdin #stdout 0.02s 24164KB
stdin
15
2
stdout
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15