<?php

for ($i = 1; $i <=10; $i++) {
    $b = ($i * $i);
    echo "$i * $i = $b\n";
}
// your code goes here