<?php

error_reporting(-1);
$x = 1;
$y = 1;

for ($x<=9; $y<=9; $x++, $y++, $a=$x*$y) {
	echo "$x*$y = $a\n";
}