The same old FizzBuzz

3.3

3 votes
Problem

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.

Sample Input
29 89
Sample Output
29 FizzBuzz 31 32 Fizz 34 Buzz Fizz 37 38 Fizz Buzz 41 Fizz 43 44 FizzBuzz 46 47 Fizz 49 Buzz Fizz 52 53 Fizz Buzz 56 Fizz 58 59 FizzBuzz 61 62 Fizz 64 Buzz Fizz 67 68 Fizz Buzz 71 Fizz 73 74 FizzBuzz 76 77 Fizz 79 Buzz Fizz 82 83 Fizz Buzz 86 Fizz 88 89
Time Limit: 1
Memory Limit: 256
Source Limit:
Contributers:
Editor Image

?