fork download
  1. <?php
  2.  
  3. // your code goes here
  4. function rec_product($from, $to) {
  5. return $from === $to ? $to : $to * rec_product($from, $to - 1);
  6. }
  7. echo rec_product(5, 15);
Success #stdin #stdout 0.01s 82560KB
stdin
Standard input is empty
stdout
54486432000