#include using namespace std ;void main( ) {for( int i = 1 ; i <= 100 ; i ++)if( ( i % 2) == 0 ) cout << i << " " ; cout << endl ;}
#include using namespace std;void main( ) {for( int i = 2 ; i <= 100 ; i += 2)cout << i << " " ;}