Finding number of digits in n'th Fibonacci number
Given a number n, find number of digits in n'th Fibonacci Numbers. First few Fibonacci numbers are 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ....Examples: Input : n = 6Output : 16'th Fibonacci number is 8 and it has 1 digit.Input : n = 12Output : 312'th Fibonacci number is 144 and it has 3 digit