t22.py 94 B

12345678
  1. x = 1
  2. n = 0
  3. while x < 10:
  4. x = x + 1
  5. if n == 2:
  6. continue
  7. n = n + 1
  8. print n