<?php

$x = mt_rand(1,10);
$y = mt_rand(1,10);

if($x % $y == 0){

echo $x . "/" . $y;
	
}else{

echo "The remainder is not 0";	
	
}

?>