fork download
<?php
    
           $X = trim(fgets(STDIN));
    
    for 
      ($y = 1; $y <= $X; $y++) {
	     echo $y."\n";}
	
?>
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