<?php
error_reporting (-1);
for ($n=1; $n<10; $n++); {
	for ($k=1; $k<10; $k++); {
		echo "$n x $k = " . ${n}*${k};
	}
}