0 / 60 seg.

What would this recursive function print if it is called with no parameters?

def count_recursive(n=1):
    if n > 3:
        return
    print(n)
    count_recursive(n + 1)