# Break Statement
i = 1
while i <= 20:
  if i==7:
    break
  print(i)
  i += 1