fork download
  1. <?php
  2. $batas = trim(fgets(STDIN));
  3. $awal = 1;
  4. while ($awal <= $batas) {
  5. echo $awal."\n";
  6. $awal++;
  7. }
  8. ?>
Success #stdin #stdout 0.02s 24388KB
stdin
Standard input is empty
stdout
Standard output is empty