#include "stdio.h"main(){long a1,a2,n,sum; a1=a2=1;
sum=0; for(n=1;n<=15;n++) {sum+=a1+a2; a1=a1+a2; a2=a1+a2;} printf("%ld\n",sum); }这个行吧