i want control to come back to "for 2" loop after certain iterations. i only want control to break two for loops(for 3, for 4) and go back to "for 2" and continue execution and
    for (m = 0; m < 67; m++) {                     // for 1
         for (i = 0; i < 89; i++) {                               // for 2
                 statement;
              for (k = 0; k < 53; k++) {                            //for 3
                      for (j = 0; j < 265; j++) {                        //for 4
                          statement;
                        }
                     }
                }
            }
 
     
     
    