Write a program that prints the numbers from x to y. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz".
Input
Space separated x and y, where y>x
Output
Print the space separated values in a single string
Input Constraint
1 <= x <= 100
1 <= y <= 100
Note: The program should be written using List Comprehension in Python.