Even Fibonacci Numbers Sum
Given a limit, find the sum of all the even-valued terms in the Fibonacci sequence below given limit.The first few terms of Fibonacci Numbers are, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233 ,... (Even numbers are highlighted).Examples : Input : limit = 8 Output : 10 Explanation : 2 + 8 = 10 Inpu