1.py 131 Bytes Edit 1 2 3 4 5 6 7 8 def peach(n): if n == 1: return 1 temp = peach(n-1) return num + temp result = peach(100) print(result)