#include <stdio.h>

int fib(int n)
{
        return n<3?2:fib(n-1)+fib(n-2);
}

int main()
{
        printf("%5d",fib(5));
}