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