for n in [1,2,3,4]:
  print n

user_input = int(raw_input("? "))
for n in range(0,user_input):
  print n


