#include int n=6; int first = 0; int Second = 1; int next; int c; void setup() { Serial.begin(9600); Serial.print("Fibonacci series for first "); Serial.print(n); Serial.print(" numbers are:nn"); for ( c = 0 ; c < n ; c++ ) { if ( c <= 1 ) next = c; else { next = first + Second; first = Second; Second = next; } Serial.println(next); } } void loop() { // put your main code here, to run repeatedly: }