while_break_continue2 48 B

123456
  1. a = 20;
  2. while(a > 0)
  3. {
  4. print(a);
  5. a--;
  6. }