fork download
  1. <?php
  2.  
  3. for($i = 1000; $i< 10000; $i++){
  4. $t = $i * $i;
  5. $t = $t % 10000;
  6. if ($t == $i){ echo $i; };
  7. };
  8.  
  9. ?>
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
9376