Problem Statement
FizzBuzz Given an integer n , for each number from 1 to n: If the number is divisible by 3, print Fizz If the number is divisible by 5, print Buzz If the number is divisible by both 3 and 5, print FizzBuzz Otherwise, print the number Example Input: n = 5\nOutput:\n1\n2\nFizz\n4\nBuzz