#include <stdio.h>
#include <conio.h>
main()
{
int a,i,F=0, S=1,T;
printf("the limit : \n");
scanf("%d",&a);
for(i=0;i<=a;i++)
{
printf("%d \n",F);
T=F+S;
F=S;
S=T;
}
getch();
}
A corner of Computer Science & Engineering related things
.