#include<stdio.h> main() { int i,n=20; float a=2,b=1,s=0,t; for(i=1;i<=n;i++) { s=s+a/b; t=a; a=a+b; b=t; } printf("%.2f\n",s); }