<?php

error_reporting(-1);

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