import sys
sys.setrecursionlimit(100000)
n = 0
def story():
global n
n = n+1
print(n)
story()
story()