// Please write out a function that prints out every number between 1 and 100,
// except if the number is a multiple of 3 print out "Fizz", if it is a multiple
// of 5 print out "Buzz", and if it is a multiple of both 3 and 5 print out only "FizzBuzz".
using System;
public class Program
{
public static void Main()
}