Peter Mawhorter
January 27, 2023
This work was done on land stolen from the Massachusett, Wampanoag, and Nipmuck peoples, and the author is grateful for their stewardship of that land in the past, in the present, and in the future. They are still here. The history of this land is important because this work could not have happened without its use. I acknowledge that I directly benefit from this ongoing injustice.
def countUp(n):
if n < 0:
return
elif n == 0:
print(0)
elif n == 1:
print(0)
print(1)
elif n == 2:
print(0)
print(1)
print(2)
elif n == 3:
countUp(2)
print(3)
elif n == 4:
countUp(3)
print(4)
else:
countUp(n-1)
print(n)