#includeusing namespace std;int main(){ int f[50]; f[0]=1,f[1]=1; for(int i=2;i<29;++i)f[i]=f[i-1]+f[i-2]; for(int i=0;i<29;++i){ cout< } return 0; }