def mystery(n):
    if n>0:
        print(n, " here.")
        mystery(n-1)
        print(n, " there.")
#What is mystery(3)?