News

If n == 1, print only the first term (0). If n == 2, print the first two terms (0, 1). Iteration: For n > 2, calculate the next term as the sum of the previous two terms (nextTerm = t1 + t2). Print ...