
lable1:
for(int i = 0;i < 10;i++){
for(int j = 0;j < 5;j++){
System.out.println(j);
if(j == 3){
break label1;
}
}
}


