#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int a=1,b=1,r;
	int i =0;
for(i=0;i<=6;i++)
{
	r= a+b;
	a=b;
	b=r;

	cout<<r<<endl;
	//cout<<b<<endl;

}
	return 0;
}