Problem # Problem 2 ### Write a Python program that iterates the integers num = 20. For multiples of three print "Fizz" instead of the number and for multiples of five print "Buzz". For numbers that are multiples of three and five, print "FizzBuzz". 1 2 3 4 5 6 7Output : fizzbuzz 1 2 fizz 4 buzz