<?php

$a = 20;

function prof($koluslug){
	for($i = 0; $i<$koluslug; $i++){
		echo $i;
	}
}

prof($a);
