long fun(int n)
{long s;
if(n==1||n==2)
s=2;
else
s=n-fun(n-1);
return s;}
main()
{printf("%ld\n",fun(3));}
结果是多少,怎么得的????