Fizz Buzz is a classic programming problem. Here is its slightly modified version.
Write a program that takes two integers as the input: the beginning and the end of the interval (both numbers belong to the interval).
The program should output the numbers from this interval, but if the number is divisible by 3, you should output Fizz instead of it; if the number is divisible by 5, output Buzz; and if it is divisible both by 3 and by 5, output FizzBuzz.
Output each number or the word on a separate line.