include <stdio.h>int main(){int f1 = 0, f2 = 1, i;for (i=0; i<20; i++ ){printf("%d ",f1);f2 = f1 + f2;f1 = f2 - f1;}return 0;}