Write a program that outputs the string representation of numbers from 1 to n.
But for multiples of three it should output “Fizz” instead of the number and for the multiples of five output “Buzz”.
For numbers which are multiples of both three and five output “FizzBuzz”.
input: 給數字 n
output: 印出 n 個, 但 3n (第 3, 6, 9) 會印出 "Fizz", 第 5n 個會印出 "Buzz", 3 跟 5 的倍數會印出 "FizzBuzz" (15n)