fork download
  1. <?php
  2.  
  3. for ($i = 1; $i < 10; $i++) {
  4. if ($i % 4 == 0 | $i % 4 == 1) { echo 8; } else { echo 4; }
  5. }
  6. // your code goes here
Success #stdin #stdout 0.02s 23664KB
stdin
Standard input is empty
stdout
844884488