Python Imprimer n numéros

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