<?php function kare($a, $b){ $islem = ($a * $a) + 2 * ($a * $b) + ($b * $b); echo $islem; } kare(9, 13); ?>