Start Declare variables i, a, b, c, N Initialize the variables, i = 0, a = 0, b = 1, and c = 0 Enter the number of terms of Fibonacci series to be printed Print First two terms a, b Use loop for the following steps until i < N c = a + b a = b b = c increase value of i each time by 1 print the value of c End