Write solve(n) that returns the nth Fibonacci number (0-indexed: fib(0) = 0, fib(1) = 1).
solve(n)
n
Examples
def solve(n): pass