fork download
  1. <?php
  2. $i=1;
  3. while ($i<132) {
  4. $j=$i+3;
  5. echo($j.";");
  6. echo($i.";");
  7. $i+=4;
  8. }
  9. ?>
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
4;1;8;5;12;9;16;13;20;17;24;21;28;25;32;29;36;33;40;37;44;41;48;45;52;49;56;53;60;57;64;61;68;65;72;69;76;73;80;77;84;81;88;85;92;89;96;93;100;97;104;101;108;105;112;109;116;113;120;117;124;121;128;125;132;129;