n = int(input())
def oneToN(n):
  if(n!=1):
    oneToN(n-1)
  print(n)
oneToN(n)

+ Recent posts