<?php

error_reporting(-1);


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