for_break_continue6 78 B

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