def fib(n): if n <= 1: return n return fib(n - 1) + fib(n - 2) def main(): result = fib(30) return f"fib(30)={result}"