FizzBuzz Printing

...
FizzBuzz game

Rules of the FizzBuzz Game
The rules of the FizzBuzz game are very simple.

  1. Say Fizz if the number is divisible by 3.
  2. Say Buzz if the number is divisible by 5.
  3. Say FizzBuzz if the number is divisible by both 3 and 5.
  4. Return the number itself, if the number is not divisible by 3 and 5.

Result :