#include<iostream.h>
main()
{  int a,b,c,m;
cout<<"ingrese limite:";
cin>>m;
a=0;
b=1;
cout<<a;
while(b<m)
{cout<<","<<b;
c=a+b;
a=b;
b=c;}

system("pause");
}
