<?php

// your code goes here
function printPattern($n){
	for($i=1; $i<=$n+2; $i++){
		echo "*";
	}
}

$n =3;
printPattern($n);