Calculate the sum of all the numbers from 1 to 100 that are a multiple of 3
Hint 1: You can check each number if it's a multiple of 3 as you go or you can skip over the ones that you don't need. The result will be the same. Is one solution better than the other?