#!/usr/bin/python
a,b=0,1
while b<1000:
	print b,
	a,b=b,a+b
