add_ft을 0부터 시작하면 안됨
 
n=int(input())
 
def add_ft(a):
  if a < n+1:
    print(a)
    return add_ft(a+1)
  else:
    pass
 
add_ft(1)

+ Recent posts