# Python: eks2-6-1.py

slut = "nej"
i = 0

while slut == "nej":
  print(i)
  i = i + 1
  if i == 5: slut = "ja"

print("slut!")
