Python Print N Nomor

inp = int(input())
for i in range(inp):
  print(i)
Terrible Toucan