intro.py 77 B

123456789
  1. x = 0
  2. while True:
  3. # if x == 5:
  4. # break
  5. print(x)
  6. x += 1