for_break_continue3 57 B

12345
  1. for(i = 5; i <= 15; i += 3)
  2. {
  3. print(i);
  4. break;
  5. }