while_break_continue1 48 B

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