while_break_continue0 47 B

123456
  1. a = 5;
  2. while(a < 8)
  3. {
  4. print(a);
  5. a++;
  6. }