<?php

error_reporting(-1);



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

};