Add two numbers 6 and 7 using PHP

<?php
$sum = 6 + 7;
echo "The sum of 6 and 7 is: " , $sum;
?>