int F(int n){ int i, f0 , f1, f2; f0 = 0; f1 = 1; if(n==0) return f0; if(n==1) return f1; for(i = 2;i