#include<stdio.h> main() { long F1=1,F2=1,F3; printf("%d,",F1); while (F2<=1000000000) { F3=F1+F2; F1=F2; F2=F3; printf("%d,",F1); } }