The FizzBuzz Challenge

For each number from 1 to 100, if it’s not divisible by 3 or 5, print the number. If it’s divisible by 3, print “fizz”. If it’s divisible by 5, print “buzz”. And finally, if it’s divisible by both 3 and 5, print “fizz buzz”.