📝 **Task:** Write `climb_stairs(n)` returning the number of distinct ways to climb `n` stairs taking 1 or 2 steps at a time. Print `climb_stairs(5)`.
📋 Implement the function above. Test cases run automatically.
💡 **Hint:** Re-read the theory if you get stuck — the pattern is right there.