~php <? echo pibo(1,1,$a); function pibo($a,$b,$c){ if($c==1) return $a; return pibo($b, $a+$b, $c-1); } ?>