def recursing(n):
    if n>0:
        print(n,'here.')
        recursing(n-1)
        print(n,'there.')
recursing(2)