<?php
$name = "Jake";
$age = 20;
echo "Hello $name. You are $age years old.\n";

$x = 195793;
$y = 256836;
$sum = $x + $y;

echo "The sum of $x and $y is $sum."
?>