<?php
error_reporting(-1);

header('Content-type: text/plain; charset=utf-8');
for ($i=1;$i<10;$i++){
    echo $i*$i ."\n";
}