#include using namespace std; int main() { for( int i1=0 ; i1< 5 ; i1++ ) { if( i1 == 3 ) continue ; cout << i1 << endl ; } return 0 ; }