A function f is defined recursively by f(1)=0, f(2)=1 and f(n)=f(n−1)−f(n−2)+2n for all integers n≥3. What is f(100)?
204
205
206
207
208