Template
mirror of
https://github.com/kenryuS/report-temp.git
synced 2026-08-13 20:51:42 +09:00
153 B
153 B
Part 1
- Normal
- Italic
- Bold
code
quote
def fib(n):
if n <= 2:
return 1
return fib(n - 1) + fib(n - 2)