Texts: Fibonacci Number
Write a function to compute the nth Fibonacci number. DO NOT USE RECURSION.
def fibonacciN(n):
"""Return the nth Fibonacci number.
is the sum of the two preceding numbers"""
>>> fibonacciN(5) # 1, 1, 2, 3, 5
5
>>> fibonacciN(7)
13
YOUR CODE HERE