<?php
$age=16;
$start=10000;
$perc=1.1;
for(;$money<1000000;){
	$money=$start*$perc;
	echo "$start*$perc=$money\n";
}