Fibonacci numbers is a sequence of numbers in which the first two numbers equal 1 and 1, and each following number is the sum of the previous two numbers. 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987..... Task: Find the N digit in this row using the given N number. Input data Single natural number N. (Just in case - Scratch can process about 78 Fibonacci numbers without losing accuracy) Output data Digit with a number N in the Fibonacci row.
Algorithmic task.