Files
CodeObject/zeta/py/completed/10870.py
2025-05-07 04:44:30 +09:00

10 lines
148 B
Python

def fib(n):
if not n:
return 0
elif n == 1:
return 1
else:
return fib(n-1) + fib(n-2)
print(fib(int(input())))