#FizzBuzz
The FizzBuzz problem is often a feature of coding interviews. We will work on the simplest version.
##The problem
For a given list of integers, print the list of numbers. If a number is a multiple of three, print the word 'Fizz' instead of that number. If a number is a multiple of 5, print the word 'Buzz' instead of that number. If a number is a multiple of both three and five, print 'FizzBuzz' instead of that number.