fork download
  1. <?php
  2.  
  3. foreach(range(0, 1000, 11) as $i) {
  4. if (($i - 3) % 13 == 0 and ($i - 5) % 12 == 0 and $i % 11 == 0) {
  5. echo $i, PHP_EOL;
  6. break;
  7. }
  8. }
Success #stdin #stdout 0.02s 23688KB
stdin
Standard input is empty
stdout
341