function f = faktorijel(n) {
	 f = n==0 ? 1 : n*faktorijel(n-1);
}

function main(){
	 a = 5;
	 print(faktorijel(a));
}

