#include<iostream> #include<iomanip> using namespace std; void main() { int a=1,b=1,c; cout<<setw(8)<<left<<a <<setw(8)<<left<<b; for(int i=1;i<=38;i++) { c=a+b; a=b; b=c; cout<<setw(8)<<left<<c; }