int a; int p; int t; a = 1; p = 0; t = 0; do { printint(a); t = a; a = t + p; p = t; } while (a < 100);