"Fibonacci Sequence III"

Given the first few Fibonacci numbers:

1 1 2 3 5 8 13 ...

What is the sum of the first 75 Fibonacci numbers?

As an example above, the sum of the first 7 numbers is 33.


Well this challenge was simple... simply modify the loop from challenge 13, and add a counter that gets added to each time.

Awnser:

Source: