#include< <stdio.h>fun(int x){ int p;if (x==0||x==1) return (3) ;p=x-fun(x-2) ;return p; }main (){ printf ("%d\n", fun(9)); }