fib-Sum of Odd digits in N in python programming
Answers
Answered by
0
Answer:
Input : N = 3
Output : 5
Expanation : 1 + 1 + 3
Input : 6
Output : 44
Explanation : 1 + 1 + 3 + 5 + 13 + 21
Similar questions