#include using namespace std; int main() { int x1 = 1 , x2 = 1 ; int temp ; cout << x1 << endl ; cout << x2 << endl ; for( int i1=0 ; i1<10 ; i1++ ) { cout << ( x1 + x2 ) << endl ; temp = x1 + x2 ; x1 = x2 ; x2 = temp ; } return 0; }