What should be the o/p

what should be the o/p for n=6 and why?

13 is the answer
for size 2*n grid

int fn( int n ){
    if( n == 0)
    return 0;
    if( n <= 2)
    return n;
    return fn(n-1 ) + fn(n-2);
}

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.