<?php

error_reporting -1;


for ($x = 1; $x < 10; $x++) {
	$i = ($x * $x);
	echo "$x x $x = $i\n";
}