fizzbuzz

For each integer from 1 to 100, print "Fizz" if the number is divisible by 3, or "Buzz" if the number is divisible by 5, or "FizzBuzz" if the number is divisible by both.  Otherwise, print the number itself.