Input
Output
<?php // Define two numbers $num1 = 10; $num2 = 20; // Perform addition $sum = $num1 + $num2; // Display the result echo "The sum of $num1 and $num2 is: $sum"; ?>