Problem 1 - Project Euler
The problem requires us to return the sum of all natural numbers below 1000; that are divisible by both 3 and 5.
A quick and simple solution will involve getting the sum of all numbers divisible by 3 and 5, less the sum of all numbers divisible by 15.