#include const int iterationCount = 100; main() { int first = 0, second = 1, i, next; cout << first << " "; for(i=0; i < iterationCount; i++) { cout << second << " "; next = first+second; first = second; second = next; } cout << endl; }