Write a program that prints the numbers from 1 to 100, but for multiples of 3 print Fizz instead of the number and for multiples of 5 print Buzz. For numbers that are multiples of both three and five print FizzBuzz. code example
Example: how to make fizzbuzz in python
for x in range(100):
output = ""
if x % 3 == 0:
output += "Fizz"
if x % 5 == 0:
output += "Buzz"
print(output)