You need to sign in to test your code and save your progress on this question.
Problem Description
Nth Fibonacci Number
Hard
Algorithms
Loops
Write a program that takes an integer `N` and outputs the `N`th number in the Fibonacci sequence. Assume the sequence starts with 1, 1, 2, 3, 5... so if N=4, output 3.
Example Input
5
Example Output
5
Success Rate:
0% (0 passed / 0 attempted)
Code
Unsaved
Test Results
Click "Run Code" to evaluate your code against the tests.