Input
Output
<?php $a = 10; $b = 15; if ($a > $b) { echo "Print the value of a " . $a; } else { echo "Print the value of b " . $b; } ?>