Implement `fib(n)` returning the n-th Fibonacci number where `fib(0) = 0` and `fib(1) = 1`.
+ 1 hidden test run on Submit.
Bottom-up iteration with two rolling values is O(n) time, O(1) space.
Run your code to see results.