

<?php
 
error_reporting(-1);

$humanDice1 = mt_rand(1, 6);
$humanDice2 = mt_rand(1, 6);
$humanResult = $humanDice1 + $humanDice2;

$aiDice1 = mt_rand(1, 6);
$aiDice2 = mt_rand(1, 6);
$aiResult = $aiDice1 + $aiDice2;
echo "Human get: $humanResult\n";
echo "AI get: $aiResult\n";

if (($aiDice1 == $aiDice2) && ($humanDice1 == $humanDice2)) {
	echo "DOOOOUBLES!!! WHAT A LUCK U ARE BOTH ARE WINNERS!!!";
} elseif($aiResult > $humanResult) {
	echo "AI is a WINNER";
} elseif ($aiResult < $humanResult) {
	echo "Human is a WINNER";
} elseif ($aiResult = $humanResult) {
	echo "Look's like we have a TIE";
}
exit();