fork download
  1. <?php
  2.  
  3. $x = mt_rand(1,10);
  4. $y = mt_rand(1,10);
  5.  
  6. if($x % $y == 0){
  7.  
  8. echo $x . "/" . $y;
  9.  
  10. }else{
  11.  
  12. echo "The remainder is not 0";
  13.  
  14. }
  15.  
  16. ?>
Success #stdin #stdout 0s 13112KB
stdin
Standard input is empty
stdout
The remainder is not 0