<?php

error_reporting(-1);

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