Consider the following function.
static int x =1;
int find (int a)
{
if (a ==0)
return x ;
else
{
x = x +1;
return find (a - 2);
}
}
void main ()
{
x = find (6);
printf("%d", x);
}
The output of the above program is ________