def a(): for x in range(1, 101): print(x) a() # def a(x): # if x > 100: # return # print(x) # a(x + 1) # # a(0)