for_break_continue7 93 B

123456789
  1. for(i, 5, 7)
  2. {
  3. for(j, 0, 5)
  4. {
  5. break;
  6. print(j);
  7. }
  8. print(i);
  9. }