#include "stdio.h" void main() { int a,b,c,i; a=b=1; printf("%d\n %d\n",a,b); for(i=1;i<=13;i++) { c=a+b; printf("%d\n",c); a=b; b=c; } }