def gokei(N): a = 1 while a < N : print(a) a = a + 1 gokei(N)