<?php function Involution($b,$a=16){ $x=$a; for ($i=1; $i<=$b; $i++) $x*=$a; return $x; } $str=Involution(4); echo $str; ?>