<?php

error_reporting(-1);

$percent = 1.1;
$anonOld = 16;

for ($balance = 10000; $balance <= 1000000; ) {
	$balance = $balance * $percent;
	$anonOld ++;
	echo "Ананасу $anonOld лет \nБаланс $balance \n\n";
}