Codice PHP:
<?php
    
for ($i=0;$i<=2;$i++) {
        for (
$j=0;$j<=2;$j++) {
            Print 
"$i - $j 
"
;
        }
    }
?>