You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*A Fibonacci Sequence is a sequence such that the current number is sum of previous two numbers in the sequence. Write a program to print the n-th number in the sequence. Take the first Fibonacci number to be 0 and second to be 1.