int new(int a)
{
	if(a==0) return 1;
	
	else if(a==1) return 1;
	
	else return new(a-1)+new(a-2);
	
}
yukarıdaki gibi değiştir.