<?php
  function show($x, $y) {
    print "<tr><td>" . $x . "<td>" . ($x+$y-$x) . "\n";
  }

  print "<table border>\n";
  print "<tr><td>X<td>X+1000-X\n";

  show(1e9, 1000);
  show(1e18, 1000);
  show(1e27, 1000);

  print "</table>\n";
?>