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